-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·65 lines (65 loc) · 1.69 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
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "babel-plugin-vimo",
"version": "1.0.0",
"description": "Vimo Components import plugin for babel.",
"repository": {
"type": "git",
"url": "https://github.com/vm-component/babel-plugin-vimo"
},
"main": "lib/index.js",
"scripts": {
"build": "rm -rf lib && ./node_modules/.bin/babel src --out-dir lib --ignore __tests__",
"test": "node_modules/.bin/babel-istanbul cover node_modules/.bin/_mocha -- --require @babel/register --no-timeouts",
"debug": "mocha --require @babel/register --require @babel/polyfill --no-timeouts",
"lint": "eslint --ext .js src",
"coveralls": "cat ./coverage/lcov.info | coveralls"
},
"pre-commit": [
"lint"
],
"keywords": [
"babel-plugin",
"antd"
],
"author": "xiangsongtao <[email protected]>",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.0.0-beta.34",
"@babel/core": "^7.0.0-beta.34",
"@babel/polyfill": "^7.0.0-beta.34",
"@babel/preset-react": "^7.0.0-beta.40",
"@babel/register": "^7.0.0-beta.34",
"babel-core": "^7.0.0-0",
"babel-istanbul": "^0.12.2",
"babel-preset-umi": "^0.2.0",
"coveralls": "^2.11.6",
"eslint": "^2.7.0",
"eslint-config-airbnb": "^6.2.0",
"expect": "^1.13.4",
"material-ui": "^0.15.4",
"mocha": "^2.3.4",
"ms": "^2.1.1",
"pre-commit": "~1.1.2",
"react-toolbox": "^1.2.5",
"to-fast-properties": "^2.0.0"
},
"babel": {
"presets": [
[
"umi",
{
"commonjs": true,
"disableTransform": true
}
]
]
},
"files": [
"lib",
"package.json",
"README.md"
],
"dependencies": {
"@babel/helper-module-imports": "^7.0.0-beta.34"
}
}