-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
51 lines (51 loc) · 1.27 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
{
"name": "redux-routing",
"description": "Universal routing built on top of redux",
"main": "lib/index.js",
"jsnext:main": "src/index.js",
"dependencies": {
"path-parser": "^0.3.2"
},
"devDependencies": {
"babel-cli": "^6.3.17",
"babel-preset-es2015": "^6.3.13",
"babelify": "^7.2.0",
"browserify": "^12.0.1",
"eslint": "^1.10.3",
"eslint-config-airbnb": "^2.1.1",
"eslint-plugin-react": "^3.13.0",
"rimraf": "^2.5.0",
"tape": "^4.3.0",
"tape-run": "^2.1.0"
},
"scripts": {
"build": "babel src --out-dir lib --presets es2015",
"check": "npm run lint && npm test",
"clean": "rimraf lib",
"lint": "eslint src test",
"prepublish": "npm run clean && npm run build",
"test": "browserify test/*.js -t [ babelify --presets [ es2015 ] ] | tape-run"
},
"repository": {
"type": "git",
"url": "https://github.com/callum/redux-routing"
},
"keywords": [
"history",
"react",
"redux",
"router"
],
"author": "Callum Jefferies <callum@callumj.uk> (http://callumj.uk/)",
"license": "ISC",
"bugs": {
"url": "https://github.com/callum/redux-routing/issues"
},
"homepage": "https://github.com/callum/redux-routing",
"version": "0.3.3",
"files": [
"lib",
"src",
"test"
]
}