-
Notifications
You must be signed in to change notification settings - Fork 24
/
package.json
45 lines (45 loc) · 947 Bytes
/
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
{
"name": "redux-watch",
"version": "1.2.0",
"description": "Watch Redux state for changes.",
"keywords": [
"redux",
"watch",
"observe",
"monitor",
"notify",
"state",
"observer",
"watcher",
"react"
],
"homepage": "https://github.com/ExodusMovement/redux-watch#readme",
"bugs": {
"url": "https://github.com/ExodusMovement/redux-watch/issues"
},
"license": "MIT",
"author": "Exodus Movement, Inc.",
"files": [
"index.js"
],
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/ExodusMovement/redux-watch.git"
},
"scripts": {
"lint": "standard",
"test": "npm run lint && npm run unit",
"unit": "tape test/*.js | tap-spec"
},
"dependencies": {
"object-path": "^0.11.5"
},
"devDependencies": {
"redux": "^3.0.5",
"reselect": "^2.0.1",
"standard": "7.x",
"tap-spec": "^4.1.1",
"tape": "^4.5.1"
}
}