-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
74 lines (74 loc) · 1.93 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
{
"name": "auto-breadcrumb",
"version": "1.3.0",
"description": "Auto generate breadcrumb for React-Router 4.xx",
"main": "lib/index.js",
"scripts": {
"start": "webpack-dev-server",
"build-demo": "webpack",
"build": "babel src --out-dir lib",
"test": "babel-tape-runner test/*",
"precommit": "lint-staged",
"prepublishOnly": "npm run build && pkg-ok"
},
"repository": {
"type": "git",
"url": "git+https://github.com/likun7981/auto-breadcrumb.git"
},
"keywords": [
"react",
"react-router",
"breadcrumb"
],
"peerDependencies": {
"react": "^15.6.1",
"react-dom": "^15.6.1",
"react-router-dom": "^4.x"
},
"author": "likun <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/likun7981/auto-breadcrumb/issues"
},
"homepage": "https://github.com/likun7981/auto-breadcrumb#readme",
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.24.1",
"babel-eslint": "^7.2.3",
"babel-loader": "^7.0.0",
"babel-plugin-transform-flow-strip-types": "^6.22.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"babel-tape-runner": "^2.0.1",
"cz-conventional-changelog": "^2.0.0",
"eslint": "^3.19.0",
"eslint-plugin-flowtype": "^2.33.0",
"eslint-plugin-react": "^7.0.1",
"flow-bin": "^0.46.0",
"husky": "^0.14.3",
"lint-staged": "^4.0.3",
"pkg-ok": "^1.1.0",
"react": "^15.6.1",
"react-dom": "^15.6.1",
"react-router-dom": "^4.1.2",
"react-test-renderer": "^15.5.4",
"tape": "^4.6.3",
"webpack": "^2.6.0",
"webpack-dev-server": "^2.7.1"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"lint-staged": {
"src/*.js": [
"eslint --fix",
"npm test",
"git add"
]
},
"dependencies": {}
}