-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
80 lines (80 loc) · 2.03 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
{
"name": "@tshio/react-router-permissions",
"version": "1.2.1",
"description": "",
"main": "build/index.js",
"module": "build/es/index.js",
"typings": "typings/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/TheSoftwareHouse/react-router-permissions"
},
"author": {
"name": "The Software House",
"url": "https://tsh.io/"
},
"license": "MIT",
"publishConfig": {
"access": "public"
},
"contributors": [
"Rafał Kucharski <[email protected]>",
"Mateusz Klinowski <[email protected]>",
"Łukasz Pietrek <[email protected]>",
"Jakub Musik <[email protected]>",
"Karol Noszczyński <[email protected]>"
],
"peerDependencies": {
"react": "^16.8.0"
},
"scripts": {
"build": "node scripts/build.js",
"test": "node scripts/test.js",
"flow": "flow",
"prepublishOnly": "node scripts/build.js"
},
"devDependencies": {
"@babel/cli": "^7.1.0",
"@babel/core": "^7.1.0",
"@babel/plugin-proposal-class-properties": "^7.1.0",
"@babel/plugin-proposal-export-default-from": "^7.0.0",
"@babel/preset-env": "^7.1.0",
"@babel/preset-flow": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"babel-core": "^7.0.0-0",
"babel-jest": "^23.6.0",
"codecov": "^3.1.0",
"enzyme": "^3.7.0",
"enzyme-adapter-react-16": "^1.7.0",
"flow-bin": "^0.81.0",
"fstream": "^1.0.12",
"husky": "^1.3.1",
"jest": "^23.6.0",
"lint-staged": "^8.1.5",
"prettier": "^1.16.4",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-router": "^5.0.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.(js|md)": [
"prettier --write",
"git add"
]
},
"jest": {
"collectCoverageFrom": [
"src/**/*.js?(x)",
"!src/**/index.js"
],
"testMatch": [
"<rootDir>/src/__tests__/**/*.js?(x)",
"<rootDir>/src/**/(*.)+(spec|test).js?(x)"
]
}
}