forked from ivantsov/redux-subscriber
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·58 lines (58 loc) · 1.4 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-subscriber",
"version": "1.1.0",
"description": "Subscribe to changes in any part of redux state",
"main": "lib/index.js",
"files": [
"lib"
],
"scripts": {
"prepublish": "npm run clean && npm run lint && npm test && npm run build",
"clean": "rimraf lib",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage && codecov",
"lint": "eslint index.js tests",
"build": "babel index.js -d lib"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ivantsov/redux-subscriber.git"
},
"keywords": [
"redux",
"store",
"state",
"subscribe",
"subscriber",
"watch",
"watcher",
"observe",
"observer",
"react"
],
"author": "Alexander Ivantsov <alexivantsov@ya.ru> (https://github.com/ivantsov)",
"license": "MIT",
"bugs": {
"url": "https://github.com/ivantsov/redux-subscriber/issues"
},
"homepage": "https://github.com/ivantsov/redux-subscriber#readme",
"dependencies": {
"object-path": "^0.11.3"
},
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-preset-es2015": "^6.18.0",
"codecov": "^1.0.1",
"eslint": "^3.12.2",
"eslint-config-airbnb-base": "^11.0.0",
"eslint-plugin-import": "^2.2.0",
"jest": "^18.0.0",
"rimraf": "^2.5.4"
},
"jest": {
"testRegex": "tests/.*.js$",
"resetMocks": true,
"resetModules": true
}
}