This repository has been archived by the owner on Jan 12, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 27
/
package.json
75 lines (75 loc) · 2.31 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
{
"name": "redux-location-state",
"description": "Utilities for reading & writing Redux store state to & from the URL",
"main": "lib/index.js",
"author": "Josh Blaney <[email protected]> and Dan Delany <[email protected]>",
"version": "2.8.2",
"scripts": {
"dev": "webpack-dev-server --config webpack.config.dev.js",
"build-examples": "BABEL_ENV=production webpack --config webpack.config.base.js",
"build-lib": "BABEL_ENV=production rm -rf lib/ && babel src --out-dir lib",
"build": "npm run test && npm run build-lib && npm run build-examples",
"serve": "cd examples && python -m SimpleHTTPServer 8000",
"test": "env NODE_PATH=$NODE_PATH:$PWD/src BABEL_ENV=production mocha --compilers js:babel-register --recursive test/spec"
},
"engines": {
"node": ">4.0"
},
"dependencies": {
"lodash": "^4.13.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/spotify/redux-location-state.git"
},
"peerDependencies": {
"redux": "^3.0.0 || ^4.0.0"
},
"files": [
"lib/*.js"
],
"devDependencies": {
"babel": "^6.23.0",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.2.1",
"babel-loader": "^7.1.2",
"babel-plugin-lodash": "^3.3.2",
"babel-preset-env": "^1.6.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-plugin-react-transform": "^2.0.2",
"babel-plugin-transform-class-properties": "^6.6.0",
"babel-plugin-transform-object-rest-spread": "^6.6.5",
"chai": "^3.5.0",
"css-loader": "^0.28.7",
"less": "^3.0.2",
"less-loader": "^4.1.0",
"lodash": "^4.17.11",
"mocha": "^5.2.0",
"pre-commit": "^1.2.2",
"react": "^15.0.1",
"react-dom": "^15.0.1",
"react-redux": "^5.0.6",
"react-router": "^4.2.0",
"react-router-dom": "^4.2.2",
"react-transform-hmr": "^1.0.4",
"redux": "^3.7.2",
"redux-logger": "^2.6.1",
"redux-thunk": "^2.2.0",
"style-loader": "^0.19.0",
"webpack": "^3.8.1",
"webpack-dev-server": "^2.9.4"
},
"license": "Apache-2.0",
"pre-commit": [
"test"
],
"bugs": {
"url": "https://github.com/spotify/redux-location-state/issues"
},
"homepage": "https://github.com/spotify/redux-location-state#readme",
"publishConfig": {
"registry": "https://registry.npmjs.org/"
}
}