-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
63 lines (63 loc) · 1.49 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
{
"name": "react-router-prop-types",
"version": "1.0.5",
"description": "Runtime type checking for react-router props",
"main": "index.js",
"types": "index.d.js",
"scripts": {
"prepublishOnly": "tsc",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Javascript-Ninja/react-router-prop-types.git"
},
"keywords": [
"react",
"route",
"router",
"react-router",
"proptype",
"proptypes",
"props"
],
"author": "Raiden <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Javascript-Ninja/react-router-prop-types/issues"
},
"homepage": "https://github.com/Javascript-Ninja/react-router-prop-types#readme",
"dependencies": {
"@types/prop-types": "^15.7.3",
"prop-types": "^15.7.2"
},
"devDependencies": {
"@types/history": "^4.7.7",
"@types/jest": "^26.0.12",
"@types/react": "^16.9.49",
"@types/react-dom": "^16.9.8",
"@types/react-router": "^5.1.8",
"@types/react-router-config": "^5.0.1",
"history": "^5.0.0",
"jest": "^26.4.2",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-router": "^5.2.0",
"react-router-config": "^5.1.1",
"ts-jest": "^26.3.0",
"typescript": "^4.0.2"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.tsx?$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json"
]
}
}