-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 896 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 896 Bytes
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
{
"name": "react-with-params",
"version": "0.2.0",
"description": "React HOC for extracting router params",
"main": "dist/src/index.js",
"scripts": {
"build": "tscomp build",
"watch": "tscomp watch",
"test": "tscomp test",
"prepublish": "npm run build"
},
"repository": "https://github.com/beanloop/react-with-params.git",
"author": "Beanloop AB",
"license": "MIT",
"devDependencies": {
"@types/jest": "^19.2.3",
"enzyme": "^2.7.1",
"enzyme-to-json": "^1.5.0",
"react-addons-test-utils": "^15.4.2",
"react-router-dom": "^4.0.0",
"tscomp": "^0.9.1",
"tslint": "^4.0.2",
"tslint-config-beanloop": "^0.1.0"
},
"dependencies": {
"@types/react": "^15.0.16",
"react": "^15.4.2",
"react-dom": "^15.4.2",
"react-router": "^4.0.0",
"recompose": "^0.22.0"
},
"peerDependencies": {
"react": "^15.4.2"
}
}