forked from mksarge/redux-first-routing
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
67 lines (67 loc) · 2.15 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
64
65
66
67
{
"name": "simple-redux-first-routing",
"version": "0.4.0",
"description": "A simple Redux-first routing package",
"main": "src/index.js",
"license": "MIT",
"homepage": "https://github.com/MoralCode/simple-redux-first-routing",
"repository": {
"type": "git",
"url": "https://github.com/MoralCode/simple-redux-first-routing.git"
},
"bugs": {
"url": "https://github.com/MoralCode/simple-redux-first-routing/issues"
},
"author": "Michael Sargent <michael-sargent@hotmail.com> (https://mksarge.com)",
"keywords": [
"redux",
"first",
"routing",
"router",
"middleware",
"history"
],
"engines": {
"node": ">= 4"
},
"files": [
"src"
],
"dependencies": {
"history": "^5.0.0",
"query-string": "^5.0.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.0.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-register": "^6.24.1",
"chai": "^4.1.2",
"cross-env": "^5.0.5",
"eslint": "^4.7.1",
"eslint-config-airbnb-base": "^12.0.0",
"eslint-plugin-import": "^2.7.0",
"mocha": "^3.4.1",
"rimraf": "^2.6.1",
"rollup": "^0.50.0",
"rollup-plugin-babel": "^3.0.2",
"rollup-plugin-commonjs": "^8.2.1",
"rollup-plugin-node-resolve": "^3.0.0",
"rollup-plugin-replace": "^2.0.0",
"rollup-plugin-uglify": "^2.0.1",
"sinon": "^3.3.0"
},
"scripts": {
"clean": "rimraf lib es dist",
"lint": "eslint src test",
"build": "npm run build:commonjs && npm run build:es",
"build:commonjs": "cross-env BABEL_ENV=commonjs babel src --out-dir lib",
"build:es": "cross-env BABEL_ENV=es babel src --out-dir es",
"build:umd": "cross-env BABEL_ENV=es NODE_ENV=development rollup -c -i src/index.js -o dist/redux-first-routing.js",
"build:umd:min": "cross-env BABEL_ENV=es NODE_ENV=production rollup -c -i src/index.js -o dist/redux-first-routing.min.js",
"test": "cross-env BABEL_ENV=commonjs mocha --compilers js:babel-core/register test/**/*.spec.js",
"prepublish": "npm run lint && npm run test && npm run clean && npm run build"
}
}