-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.39 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
{
"name": "@nerdwallet/epic-state-subscriptions",
"version": "0.0.1",
"description": "An epic state subscription library using Redux-Observable",
"main": "dist/index.js",
"scripts": {
"test": "jest",
"jest": "jest --coverage",
"babel": "babel --copy-files --out-dir dist src",
"build": "npm run test && npm run lint && npm run babel",
"clean": "rm -rf dist",
"lint": "eslint src --ext .js"
},
"homepage": "https://github.com/NerdWallet/epic-state-subscriptions",
"bugs": {
"url": "https://github.com/NerdWallet/epic-state-subscriptions/issues"
},
"author": "Dan Reynolds",
"license": "MIT",
"keywords": [
"Rx",
"Redux",
"middleware",
"epic",
"observable",
"action"
],
"devDependencies": {
"@babel/cli": "^7.4.3",
"@babel/core": "^7.4.3",
"@babel/preset-env": "^7.4.3",
"babel-jest": "^24.7.1",
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-config-prettier": "^4.1.0",
"eslint-plugin-import": "^2.17.1",
"eslint-plugin-prettier": "^3.0.1",
"jest": "^24.7.1",
"prettier": "1.17.0",
"redux-observable": "^1.1.0"
},
"peerDependencies": {
"redux-observable": "^1.1.0"
},
"dependencies": {
"core-js": "^3.0.1",
"lodash": "^4.17.11",
"redux": "^4.0.1",
"rxjs": "^6.4.0",
"uuid": "^3.3.2"
},
"publishConfig": {
"access": "public"
}
}