-
Notifications
You must be signed in to change notification settings - Fork 94
/
package.json
76 lines (76 loc) · 1.98 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
{
"name": "react-router-component",
"version": "0.40.0",
"description": "Declarative router component for React",
"main": "index.js",
"dependencies": {
"create-react-class": "^15.7.0",
"is-equal-shallow": "^0.1.3",
"object-assign": "^4.1.0",
"object.omit": "^3.0.0",
"prop-types": "^15.8.1",
"qs": "^6.11.1",
"url-pattern": "^1.0.1",
"urllite": "^0.5.0"
},
"devDependencies": {
"@babel/cli": "^7.21.0",
"@babel/core": "^7.21.4",
"@babel/eslint-parser": "^7.21.3",
"@babel/preset-env": "^7.21.4",
"@babel/preset-react": "^7.18.6",
"@babel/register": "^7.21.0",
"babel-plugin-espower": "^3.0.1",
"envify": "^4.1.0",
"eslint": "^8.38.0",
"eslint-plugin-react": "^7.32.2",
"mocha": "^10.2.0",
"power-assert": "^1.6.1",
"pre-commit": "^1.2.2",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-test-renderer": "^16.12.0",
"semver": "^7.4.0",
"zuul": "^3.12.0"
},
"browserify": {
"transform": [
"envify"
]
},
"scripts": {
"test": "make test",
"lint": "make lint"
},
"repository": {
"type": "git",
"url": "git://github.com/strml/react-router-component"
},
"keywords": [
"react",
"react-component",
"router",
"history",
"pushState"
],
"author": "Andrey Popp <[email protected]> (https://github.com/andreypopp)",
"contributors": [
"Dave Mac (https://github.com/DveMac)",
"Matthew Dapena-Tretter (https://github.com/matthewwithanm)",
"Mitchel Kuijpers (https://github.com/mitchelkuijpers)",
"Simen Brekken <[email protected]> (https://github.com/sbrekken)",
"Samuel Reed <[email protected]> (https://github.com/strml)"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/strml/react-router-component/issues"
},
"homepage": "http://strml.viewdocs.io/react-router-component",
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"pre-commit": [
"lint",
"test"
]
}