-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
53 lines (53 loc) · 1.38 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"name": "babel-plugin-import-fix",
"version": "1.3.4",
"description": "alter import module to certain module file path for smaller bundle and better performance.",
"repository": {
"type": "git",
"url": "https://github.com/lin-xi/babel-plugin-import-fix"
},
"main": "lib/index.js",
"scripts": {
"build": "rm -rf lib && ./node_modules/.bin/babel src --out-dir lib --ignore __tests__",
"coveralls": "cat ./coverage/lcov.info | coveralls",
"newpublish": "npm publish --registry http://registry.npmjs.org"
},
"keywords": [
"babel-plugin",
"module path fix",
"tree-shake"
],
"author": "linxi <mcnjqe@gmail.com>",
"license": "MIT",
"devDependencies": {
"ava": "^0.21.0",
"babel-cli": "^6.24.1",
"babel-core": "^6.25.0",
"babel-plugin-add-module-exports": "^0.1.2",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-0": "^6.16.0",
"coveralls": "^2.11.6",
"eslint": "^4.3.0",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-node": "^5.1.1",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^3.0.1",
"standard": "^10.0.2"
},
"babel": {
"presets": [
"es2015",
"stage-0"
],
"plugins": [
"add-module-exports"
]
},
"files": [
"lib",
"package.json",
"README.md"
]
}