forked from noderaider/redux-idle-monitor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.76 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
{
"name": "redux-idle-monitor",
"version": "0.7.0",
"description": "Tracks and triggers events when a user goes idle in a Redux application.",
"main": "lib/index.js",
"files": [
"lib",
"src",
"doc"
],
"scripts": {
"start": "babel src/lib -d lib --watch",
"prebuild": "rimraf lib",
"build": "babel src/lib -d lib --ignore __tests__,__mocks__",
"predoc": "rimraf doc",
"doc": "esdoc -c ./esdoc.json",
"prerelease": "npm run build",
"release": "npm version patch && npm publish",
"postrelease": "npm run release-doc",
"prerelease-doc": "npm run doc",
"release-doc": "git subtree push --prefix doc origin gh-pages",
"postrelease-doc": "git commit -am \"doc-release\" && git push --follow-tags",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/noderaider/redux-idle-monitor.git"
},
"keywords": [
"redux",
"react",
"idle",
"monitor"
],
"dependencies": {
"babel-runtime": "^6.18.0",
"immutable": "^4.0.0-rc.12",
"invariant": "^2.2.2",
"localsync": "^1.4.0",
"redux": "^3.5.2",
"redux-actions": "^0.9.1",
"redux-blueprint": "*",
"redux-middleware": "*"
},
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-plugin-transform-runtime": "^6.15.0",
"babel-preset-latest": "^6.16.0",
"babel-preset-stage-2": "^6.18.0",
"esdoc": "^0.4.6",
"esdoc-es7-plugin": "0.0.3",
"jest": "^16.0.2",
"lerna": "2.0.0-beta.37",
"rimraf": "^2.5.4"
},
"author": "Cole Chamberlain <cole.chamberlain@gmail.com> (https://github.com/cchamberlain)",
"license": "MIT",
"bugs": {
"url": "https://github.com/noderaider/redux-idle-monitor/issues"
},
"homepage": "https://noderaider.github.io/redux-idle-monitor"
}