-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
58 lines (58 loc) · 1.51 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
{
"name": "redux-history-sync",
"version": "3.2.2",
"description": "Keeping browser history and redux in sync",
"homepage": "/~https://github.com/cape-io/redux-history-sync",
"author": "Kai Curry <kai@cape.io> (http://www.cape.io/)",
"main": "lib/index",
"repository": {
"url": "git@github.com:cape-io/redux-history-sync.git",
"type": "git"
},
"bugs": {
"url": "/~https://github.com/cape-io/redux-history-sync/issues"
},
"tags": [
"react",
"redux",
"history"
],
"keywords": [
"react",
"redux",
"history"
],
"license": "MIT",
"scripts": {
"build": "mkdir -p lib && babel ./src -d lib",
"lint": "eslint src test",
"test": "npm run lint && npm run test:node",
"test:node": "babel-tape-runner test/**/*spec.js",
"prepublish": "npm run build"
},
"dependencies": {
"cape-lodash": "^1.12.1",
"cape-redux": "^3.1.0",
"cape-select": "^2.4.0",
"classnames": "^2.2.5",
"lodash": "^4.17.2",
"redux": "^3.6.0",
"reselect": "^3.0.1"
},
"devDependencies": {
"babel-cli": "^6.22.2",
"babel-eslint": "^7.1.1",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-lodash": "^3.2.11",
"babel-preset-es2015": "^6.9.0",
"babel-preset-stage-1": "^6.5.0",
"babel-tape-runner": "^2.0.1",
"eslint": "^3.15.0",
"eslint-config-airbnb-base": "^11.1.0",
"eslint-plugin-babel": "^4.1.1",
"eslint-plugin-import": "^2.2.0",
"isparta": "^4.0.0",
"isparta-loader": "^2.0.0",
"tape": "^4.6.0"
}
}