This repository was archived by the owner on Dec 15, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 113
/
Copy pathpackage.json
125 lines (125 loc) · 4.17 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
{
"name": "redux-little-router",
"version": "11.0.0",
"description": "A barebones routing solution for Redux applications.",
"main": "lib/index.js",
"scripts": {
"preversion": "npm run check",
"version": "npm run clean && npm run build && git add -A dist",
"demo": "webpack-dev-server --port 3000 --config config/webpack/demo/webpack.config.demo.dev.js --colors",
"build-demo": "webpack --bail --config config/webpack/demo/webpack.config.demo.js",
"start-ssr-demo": "nodemon --watch demo demo/server/index.js",
"clean-dist": "rimraf dist",
"build-dist-min": "webpack --bail --config config/webpack/webpack.config.js",
"build-dist-dev": "webpack --bail --config config/webpack/webpack.config.dev.js",
"build-dist": "npm run clean-dist && npm run build-dist-min && npm run build-dist-dev",
"clean-lib": "rimraf lib",
"build-lib": "npm run clean-lib && babel src -d lib --copy-files",
"watch-lib": "watch 'npm run build-lib' src/ -d",
"clean": "npm run clean-lib && npm run clean-dist",
"build": "npm run build-lib && npm run build-dist",
"lint": "concurrently 'eslint --color --ext .js,.jsx src test' 'flow check'",
"test": "mocha test/.setup.js test/**/*.spec.js",
"test-cov": "BABEL_ENV=coverage nyc mocha test/.setup.js 'test/**/*.spec.js'",
"check": "npm run lint && npm run test",
"check-cov": "npm run lint && npm run test-cov",
"all": "npm run check && npm run check-cov && npm run clean && npm run build"
},
"engines": {
"node": ">=4"
},
"repository": {
"type": "git",
"url": "git+https://[email protected]/FormidableLabs/redux-little-router.git"
},
"keywords": [
"redux",
"router",
"middleware"
],
"author": "Tyler Thompson",
"license": "MIT",
"bugs": {
"url": "https://github.com/FormidableLabs/redux-little-router/issues"
},
"homepage": "https://github.com/FormidableLabs/redux-little-router#readme",
"dependencies": {
"history": "^3.0.0",
"lodash.assign": "^4.2.0",
"url-pattern": "^1.0.1"
},
"devDependencies": {
"babel-cli": "^6.14.0",
"babel-core": "^6.14.0",
"babel-eslint": "^6.1.2",
"babel-loader": "^6.2.5",
"babel-plugin-istanbul": "^2.0.1",
"babel-polyfill": "^6.9.1",
"babel-preset-es2015": "^6.14.0",
"babel-preset-react": "^6.11.1",
"babel-preset-react-hmre": "^1.1.1",
"babel-preset-stage-2": "^6.11.0",
"babel-register": "^6.14.0",
"chai": "^3.5.0",
"codecov": "^1.0.1",
"compression-webpack-plugin": "^0.3.1",
"concurrently": "^2.2.0",
"css-loader": "^0.25.0",
"css-modules-require-hook": "^4.0.2",
"ent": "^2.2.0",
"enzyme": "^2.4.1",
"eslint": "^3.5.0",
"eslint-config-formidable": "^1.0.1",
"eslint-plugin-babel": "^3.3.0",
"eslint-plugin-filenames": "^1.1.0",
"eslint-plugin-flowtype": "^2.18.1",
"eslint-plugin-import": "^1.15.0",
"eslint-plugin-react": "^6.0.0",
"express": "^4.14.0",
"extract-text-webpack-plugin": "^1.0.1",
"flow-bin": "^0.32.0",
"flow-typed": "^2.0.0-beta.6",
"handlebars": "^4.0.5",
"jsdom": "^9.5.0",
"lodash": "^4.15.0",
"lodash.chunk": "^4.2.0",
"mocha": "^3.0.2",
"nodemon": "^1.10.2",
"normalize.css": "^4.2.0",
"nyc": "^8.3.0",
"postcss-cssnext": "^2.8.0",
"postcss-import": "^8.1.2",
"postcss-loader": "^0.13.0",
"postcss-reporter": "^1.4.1",
"react": "^15.3.1",
"react-addons-test-utils": "^15.3.1",
"react-dom": "^15.3.1",
"react-hot-loader": "^1.3.0",
"react-redux": "^4.4.5",
"redux": "^3.6.0",
"redux-logger": "^2.6.1",
"redux-loop": "^2.2.2",
"redux-thunk": "^2.1.0",
"rimraf": "^2.5.3",
"sinon": "^1.17.4",
"sinon-chai": "^2.8.0",
"style-loader": "^0.13.1",
"watch": "^0.19.2",
"webpack": "^1.13.2",
"webpack-combine-loaders": "^2.0.0",
"webpack-dev-middleware": "^1.7.0",
"webpack-dev-server": "^1.15.2",
"webpack-partial": "^1.5.0",
"webpack-stats-plugin": "^0.1.3"
},
"peerDependencies": {
"react": "^0.14.0 || ^15.0.0-0",
"react-dom": "^0.14.0 || ^15.0.0-0",
"redux": "^3.0.0",
"react-redux": "^4.0.0"
},
"nyc": {
"sourceMap": false,
"instrument": false
}
}