forked from DFocusGroup/antd-extensions
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
88 lines (88 loc) · 2.33 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": "antd-extensions",
"version": "1.6.1",
"description": "",
"author": "leftstick",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/DFocusFE/antd-extensions.git"
},
"typings": "typings/index.d.ts",
"main": "dist/index.js",
"module": "dist/index.es.js",
"jsnext:main": "dist/index.es.js",
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": "eslint --max-warnings=1 --ignore-pattern !.umirc.js"
},
"commitlint": {
"extends": [
"@commitlint/config-angular"
]
},
"scripts": {
"build": "rollup -c",
"start": "rollup -c -w",
"coverage": "cat ./coverage/lcov.info | coveralls",
"test": "jest --config ./jest.config.js",
"prepare": "npm run build",
"predeploy": "cd example && npm install && npm run build",
"deploy": "gh-pages -d example/dist"
},
"peerDependencies": {
"antd": "^3.9.1",
"moment": "^2.22.2",
"prop-types": "^15.6.2",
"react": "^16.4.2",
"react-dom": "^16.4.2"
},
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/plugin-proposal-class-properties": "^7.2.3",
"@babel/preset-env": "^7.2.3",
"@babel/preset-react": "^7.0.0",
"@commitlint/cli": "^7.2.1",
"@commitlint/config-angular": "^7.1.2",
"babel-eslint": "^9.0.0",
"babel-jest": "^24.8.0",
"babel-plugin-import": "^1.11.0",
"coveralls": "^3.0.4",
"enzyme": "^3.9.0",
"enzyme-adapter-react-16": "^1.13.2",
"eslint": "^5.12.0",
"eslint-config-prettier": "^3.3.0",
"eslint-config-umi": "^1.4.0",
"eslint-plugin-flowtype": "^2.50.3",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-prettier": "^2.7.0",
"eslint-plugin-react": "^7.12.3",
"gh-pages": "^2.0.1",
"husky": "^1.3.1",
"jest": "^24.8.0",
"lint-staged": "^8.1.0",
"prettier": "^1.17.1",
"react": "^16.7.0",
"react-dom": "^16.7.0",
"rollup": "^1.1.0",
"rollup-plugin-babel": "^4.2.0",
"rollup-plugin-commonjs": "^9.2.0",
"rollup-plugin-node-resolve": "^4.0.0",
"rollup-plugin-postcss": "^1.6.3",
"rollup-plugin-url": "^2.1.0",
"sinon": "^7.3.2"
},
"files": [
"dist",
"typings"
],
"dependencies": {
"antd": "^3.9.1"
}
}