-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
88 lines (88 loc) · 2.58 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "k2-react-components",
"version": "0.4.15",
"description": "",
"homepage": "",
"repository": "k2data/k2-react-components",
"author": "k2data <[email protected]> (https://www.k2data.com.cn)",
"contributors": [
"",
""
],
"license": "MIT",
"keywords": [],
"main": "index.js",
"files": [
"lib/"
],
"jsnext:main": "index.es6.js",
"eslintConfig": {
"parser": "babel-eslint",
"extends": "airbnb-base"
},
"dependencies": {
"animate.css": "^3.5.2",
"antd": "^2.10.1",
"babel-runtime": "^6.11.6",
"fs-extra": "^4.0.2",
"prop-types": "^15.6.0",
"react": "^15.6.1",
"react-dom": "^15.6.1",
"voca": "^1.0.0"
},
"devDependencies": {
"@storybook/react": "^3.0.1",
"ag-grid": "^13.3.1",
"ag-grid-react": "^13.3.0",
"autoprefixer": "^7.1.4",
"babel-cli": "^6.16.0",
"babel-core": "^6.17.0",
"babel-eslint": "^8.0.1",
"babel-plugin-external-helpers": "^6.18.0",
"babel-preset-env": "^1.6.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-0": "^6.16.0",
"babel-register": "^6.16.3",
"chai": "^4.1.2",
"coveralls": "^2.11.14",
"cssnano": "^3.8.1",
"del": "^3.0.0",
"eslint": "^4.7.2",
"eslint-config-airbnb-base": "^12.0.0",
"eslint-config-standard": "^10.2.1",
"eslint-config-standard-jsx": "^4.0.2",
"eslint-config-standard-react": "^5.0.0",
"eslint-plugin-babel": "^4.1.2",
"eslint-plugin-flowtype": "^2.25.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-node": "^5.2.0",
"eslint-plugin-promise": "^3.3.1",
"eslint-plugin-react": "^7.4.0",
"eslint-plugin-standard": "^3.0.1",
"istanbul": "^1.1.0-alpha.1",
"live-server": "^1.1.0",
"mocha": "^3.1.2",
"postcss": "^6.0.12",
"postcss-nested": "^2.1.2",
"rollup": "^0.50.0",
"rollup-plugin-babel": "^3.0.2",
"rollup-plugin-image": "^1.0.2",
"rollup-plugin-postcss": "^0.2.0",
"sinon": "^4.0.0"
},
"scripts": {
"lint": "eslint src test tools",
"lint:fix": "eslint --fix src test tools",
"test": "mocha --compilers js:babel-register",
"test:watch": "mocha --compilers js:babel-register --reporter min --watch",
"test:cover": "babel-node ./node_modules/istanbul/lib/cli.js cover ./node_modules/mocha/bin/_mocha",
"coveralls": "cat ./coverage/lcov.info | coveralls",
"build": "node tools/build",
"prepublish": "npm run build",
"publish:docs": "",
"start": "",
"start:live": "live-server ./examples --port=10001",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
}
}