-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.5 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
{
"name": "react-qparams",
"version": "0.3.1",
"description": "Read and manipulate url query parameters with a render prop!",
"main": "dist/index.js",
"repository": "https://github.com/NLincoln/react-qparams",
"author": "Nathan Lincoln <[email protected]>",
"license": "MIT",
"private": false,
"keywords": [
"react-router",
"query-params",
"query-string",
"render-prop"
],
"scripts": {
"test": "jest",
"build": "NODE_ENV=production rollup -c rollup.config.js",
"prepublish": "yarn build"
},
"peerDependencies": {
"prop-types": "*",
"query-string": ">= 5",
"react": ">= 15",
"react-dom": ">= 15",
"react-router-dom": "^4.0.0"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-jest": "^22.4.3",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"jest": "^22.4.3",
"jest-enzyme": "^6.0.0",
"query-string": "^6.0.0",
"react": "^16.3.2",
"react-dom": "^16.3.2",
"react-router-dom": "^4.2.2",
"rollup": "^0.58.2",
"rollup-plugin-babel": "^3.0.4",
"rollup-plugin-node-resolve": "^3.3.0"
},
"jest": {
"setupTestFrameworkScriptFile": "<rootDir>/node_modules/jest-enzyme/lib/index.js",
"setupFiles": [
"<rootDir>/setupTests.js"
]
}
}