This repository has been archived by the owner on Mar 10, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
63 lines (63 loc) · 1.88 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": "unirouter",
"version": "6.0.2",
"description": "A minimal routing system built with uniloc and redux",
"main": "lib/index.js",
"scripts": {
"test": "istanbul test _mocha -- --require babel-register test/**/*.{js,jsx}",
"build": "NODE_ENV=production babel src -s -d lib",
"watch": "babel src -s -d lib -w",
"bundle": "NODE_ENV=production babel-node node_modules/.bin/webpack --display-modules",
"prepublish": "npm run build && npm run bundle"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bkonkle/unirouter.git"
},
"author": "Brandon Konkle <brandon@konkle.us>",
"license": "MIT",
"keywords": [
"uniloc",
"redux",
"router",
"routing",
"universal",
"isomorphic"
],
"peerDependencies": {
"redux": "^2.0.0 || ^3.0.0"
},
"dependencies": {
"react-redux": "^4.4.5",
"redux-actions": "^0.12.0",
"uniloc": "^0.3.0"
},
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-eslint": "^7.0.0",
"babel-loader": "^6.2.5",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-transform-async-to-generator": "^6.16.0",
"babel-plugin-transform-class-properties": "^6.18.0",
"babel-plugin-transform-export-extensions": "^6.8.0",
"babel-plugin-transform-object-rest-spread": "^6.16.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"babel-preset-react-optimize": "^1.0.1",
"babel-register": "^6.18.0",
"chai": "^3.5.0",
"eslint": "^3.8.1",
"eslint-config-standard": "^6.2.0",
"eslint-config-standard-react": "^4.2.0",
"eslint-plugin-promise": "^3.3.0",
"eslint-plugin-react": "^6.4.1",
"eslint-plugin-standard": "^2.0.1",
"istanbul": "^0.4.5",
"jsx-chai": "^4.0.0",
"mocha": "^3.1.2",
"proxyquire": "^1.7.10",
"sinon": "^1.17.6",
"sinon-chai": "^2.8.0",
"webpack": "^1.13.2"
}
}