forked from Paratron/hookrouter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.3 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
{
"name": "hookrouter",
"version": "1.2.3",
"description": "A hook based router for React",
"main": "dist/index.js",
"scripts": {
"test": "jest unittest/",
"prepublishOnly": "cross-env NODE_ENV=production babel ./src --out-dir ./dist -s inline",
"preTest": "babel ./src --out-dir ./dist -s inline && babel ./test/src --out-dir ./test/dist -s inline && npm run webpack",
"webpack": "webpack ./test/dist/index.js -o ./test/dist/pack.js --devtool source-map",
"testServer": "http-server ./test"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/Paratron/hookrouter.git"
},
"files": [
"dist/*"
],
"author": "Christian Engel <christian.engel@wearekiss.com>",
"license": "ISC",
"bugs": {
"url": "https://github.com/Paratron/hookrouter/issues"
},
"homepage": "https://github.com/Paratron/hookrouter#readme",
"peerDependencies": {
"react": "^16.8.0"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.2.2",
"@babel/preset-env": "^7.3.1",
"@babel/preset-react": "^7.0.0",
"cross-env": "5.2.0",
"http-server": "0.11.1",
"jest": "24.6.0",
"node": "11.12.0",
"react": "16.8.2",
"react-dom": "16.8.5",
"react-test-renderer": "16.8.5",
"webpack": "4.29.6",
"webpack-cli": "3.3.0"
}
}