-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
executable file
·63 lines (63 loc) · 1.71 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
{
"name": "redux-subscriber",
"version": "1.1.0",
"description": "Subscribe to changes in any part of redux state",
"main": "lib/index.js",
"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 <alex@ivantsov.me> (https://github.com/ivantsov)",
"license": "MIT",
"bugs": {
"url": "https://github.com/ivantsov/redux-subscriber/issues"
},
"homepage": "https://github.com/ivantsov/redux-subscriber#readme",
"files": [
"lib",
"index.d.ts"
],
"scripts": {
"prepack": "npm-run-all check build",
"check": "npm-run-all -p clean format:check lint test",
"build": "babel src -d lib --ignore \"**/__tests__\"",
"clean": "rimraf lib",
"test": "jest",
"test:watch": "npm test -- --watch",
"test:coverage": "npm test -- --coverage && codecov",
"lint": "eslint --ignore-path .gitignore .",
"lint:fix": "npm run lint -- --fix",
"format": "prettier --write \"**/*.{js,json,ts,md}\"",
"format:check": "prettier --list-different \"**/*.{js,json,ts,md}\""
},
"dependencies": {
"object-path": "^0.11.3"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.7.0",
"codecov": "^3.0.2",
"eslint": "^5.0.0",
"eslint-config-airbnb-base": "^13.0.0",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-prettier": "^2.6.1",
"jest": "^23.1.0",
"npm-run-all": "^4.1.3",
"prettier": "^1.13.5",
"redux": "^4.0.0",
"rimraf": "^2.6.2"
}
}