-
Notifications
You must be signed in to change notification settings - Fork 30
/
package.json
93 lines (93 loc) · 2.54 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
89
90
91
92
93
{
"name": "react-breadcrumbs-dynamic",
"version": "1.2.1",
"description": "React dynamic breadcrumbs extremely flexible and easy to use",
"main": "dist/src/index.js",
"repository": {
"type": "git",
"url": "https://github.com/oklas/react-breadcrumbs-dynamic"
},
"keywords": [
"breadcrumbs",
"theme",
"react",
"router",
"react-router",
"through",
"react-through"
],
"author": "Serguei Okladnikov <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/oklas/react-breadcrumbs-dynamic/issues"
},
"homepage": "https://github.com/oklas/react-breadcrumbs-dynamic#readme",
"peerDependencies": {
"react": ">=16.3.0 || ^16.3.0"
},
"devDependencies": {
"@babel/polyfill": "^7.0.0",
"babel-cli": "^6.24.1",
"babel-core": "^6.26.3",
"babel-jest": "^22.4.3",
"babel-loader": "^7.1.1",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-react-jsx": "^6.24.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"chai": "^4.1.2",
"codecov": "^3.0.1",
"enzyme": "^3.2.0",
"enzyme-adapter-react-16": "^1.1.1",
"gh-pages": "^2.0.1",
"jest": "^22.4.3",
"react": "^16.3.2",
"react-bootstrap": "^0.32.1",
"react-dom": "^16.3.2",
"react-router-bootstrap": "^0.24.4",
"react-router-dom": "^4.2.2",
"webpack": "^3.10.0",
"webpack-dev-server": "^2.9.7"
},
"dependencies": {
"react-through": "^1.1.4"
},
"jest": {
"moduleDirectories": [
"node_modules",
"src"
],
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(js|jsx)$",
"coverageDirectory": "coverage",
"coverageReporters": [
"text-summary",
"lcov",
"html"
],
"collectCoverageFrom": [
"src/**/*.js",
"!src/**/*.spec.js",
"!src/**/*.index.js"
],
"moduleFileExtensions": [
"js",
"jsx"
],
"transform": {
"^.+\\.js$": "babel-jest",
"^.+\\.jsx$": "babel-jest"
},
"testURL": "http://localhost"
},
"scripts": {
"build": "babel -d dist/ src/index.js",
"build:example": "cd example && webpack",
"start:example": "cd example && webpack-dev-server --config webpack.config.js",
"build:version": "node -p -e \"require('./package.json').version\"",
"gh-pages": "sh -c \"gh-pages -d example -m $(yarn -s build:version)\"",
"deploy": "yarn build && yarn build:example && yarn gh-pages",
"prepublish": "npm run build",
"test": "jest --coverage",
"test-debug": "jest --bail --verbose"
}
}