-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
37 lines (37 loc) · 1.1 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
{
"name": "babel-plugin-directory-named-module",
"version": "1.1.1",
"description": "Another babel plugin to save your time and keyboard :)",
"main": "lib",
"scripts": {
"test": "mocha --harmony --compilers js:babel-core/register src/spec",
"clean": "rm -rf lib",
"build": "babel src -d lib --ignore src/spec",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mdluo/babel-plugin-directory-named-module.git"
},
"author": "Mingdong Luo",
"license": "MIT",
"bugs": {
"url": "https://github.com/mdluo/babel-plugin-directory-named-module/issues"
},
"homepage": "https://github.com/mdluo/babel-plugin-directory-named-module#readme",
"dependencies": {
"babel-core": "^6.23.1",
"babel-preset-es2015": "^6.22.0"
},
"devDependencies": {
"babel-cli": "^6.23.0",
"babel-eslint": "^7.1.1",
"chai": "^3.5.0",
"eslint": "^3.17.0",
"eslint-config-airbnb": "^14.1.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^6.10.0",
"mocha": "^3.2.0"
}
}