This repository has been archived by the owner on Nov 13, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
87 lines (87 loc) · 2.27 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "react-redux-epic",
"version": "1.1.0",
"description": "Server side rendering for Redux-Observable",
"main": "lib",
"scripts": {
"commit": "git-cz",
"pretest": "npm run lint",
"test": "NODE_ENV=test nyc ava",
"test:watch": "ava --watch",
"lint": "eslint src test",
"cover": "nyc report --reporter=html",
"cover:watch": "nodemon --watch test/ --exec 'npm run test && npm run cover'",
"cover:show": "open coverage/index.html",
"cover:alls": "nyc report --reporter=text-lcov | coveralls",
"prebuild": "npm run test",
"build": "BABEL_ENV=production babel src --out-dir lib",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/BerkeleyTrue/react-redux-epic.git"
},
"keywords": [
"react",
"redux",
"redux-observable",
"rx",
"rxjs",
"observables",
"middleware",
"server-sider-rendering",
"ssr"
],
"ava": {
"require": [
"babel-register"
],
"babel": "inherit",
"failFast": true
},
"nyc": {
"sourceMap": false,
"instrument": false
},
"author": "Berkeley Martinez <hi@BerkeleyTrue.com> (http://www.BerkeleyTrue.com)",
"license": "MIT",
"devDependencies": {
"ava": "^0.25.0",
"babel": "^6.5.2",
"babel-cli": "^6.14.0",
"babel-eslint": "^8.0.0",
"babel-plugin-dev-expression": "^0.2.1",
"babel-plugin-istanbul": "^4.1.1",
"babel-plugin-transform-function-bind": "^6.8.0",
"babel-plugin-transform-runtime": "^6.15.0",
"babel-preset-es2015": "^6.14.0",
"babel-preset-react": "^6.11.1",
"coveralls": "^3.0.1",
"cz-conventional-changelog": "^2.0.0",
"enzyme": "^3.0.0",
"enzyme-adapter-react-16": "^1.0.0",
"eslint": "^4.1.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-react": "^7.0.0",
"nodemon": "^1.11.0",
"nyc": "^11.0.1",
"react-redux": "^5.0.4",
"react-test-renderer": "^16.0.0",
"sinon": "^5.0.0"
},
"dependencies": {
"babel-runtime": "^6.11.6",
"debug": "^3.1.0",
"invariant": "^2.2.1",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"redux": "^3.6.0",
"redux-observable": "^0.17.0",
"rxjs": "^5.3.0"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
}
}