-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.84 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.84 KB
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
{
"name": "@methodexists/dva-ant-breadcrumbs",
"version": "0.1.0",
"description": "Antd’s Breadcrumb component connected to dva router",
"main": "lib/index.js",
"files": [
"css",
"lib",
"umd"
],
"scripts": {
"build": "nwb build-react-component --copy-files --no-demo",
"clean": "nwb clean-module && nwb clean-demo",
"start": "nwb serve-react-demo",
"test": "nwb test-react",
"test:coverage": "nwb test-react --coverage",
"test:watch": "nwb test-react --server",
"lint": "eslint src tests demo/src",
"precommit": "lint-staged",
"prepublishOnly": "npm run test && npm run build",
"prepush": "npm run lint --silent && npm run test",
"patch": "npm run prepublishOnly && npm version patch && git push --no-verify && git push --tags --no-verify && npm publish --ignore-scripts",
"minor": "npm run prepublishOnly && npm version minor && git push --no-verify && git push --tags --no-verify && npm publish --ignore-scripts"
},
"lint-staged": {
"*.{js,jsx}": [
"eslint"
]
},
"dependencies": {},
"peerDependencies": {
"antd": "3.x",
"dva-react-router-3": "1.x",
"lodash": "4.x",
"react": "16.x"
},
"devDependencies": {
"@methodexists/eslint-config": "0.0.10",
"antd": "^3.0.2",
"babel-plugin-import": "^1.6.3",
"babel-plugin-module-resolver": "^3.0.0",
"dva-react-router-3": "^1.0.2",
"husky": "^0.14.0",
"lint-staged": "^4.0.0",
"lodash": "^4.17.4",
"nwb": "0.17.x",
"nwb-less": "^0.6.0",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"redux-mock-store": "^1.2.3"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/MethodExists/dva-ant-breadcrumbs"
},
"bugs": {
"url": "https://github.com/MethodExists/dva-ant-breadcrumbs/issues"
},
"keywords": [
"react-component"
]
}