forked from noriaki/hypernova-react-redux
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 2.08 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
{
"name": "hypernova-react-redux",
"version": "1.2.0",
"description": "React/Redux (react-redux) bindings for Hypernova",
"main": "lib/index.js",
"scripts": {
"prepublish": "npm run build",
"build": "rimraf lib && babel src -d lib",
"lint": "eslint src test",
"test": "npm run lint && npm run build && npm run test:coverage",
"tests-only": "npm run build && npm run test:quick",
"test:coverage": "babel-node node_modules/.bin/istanbul cover node_modules/.bin/_mocha -- -R tap test/*-test.js",
"test:quick": "babel-node node_modules/.bin/_mocha -R tap test/*-test.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/noriaki/hypernova-react-redux.git"
},
"keywords": [
"react",
"redux",
"react-redux",
"hypernova",
"server",
"render",
"isomorphic",
"universal"
],
"files": [
"README.md",
"lib",
"src",
"test",
".eslintrc.json"
],
"author": "Noriaki Uchiyama <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/noriaki/hypernova-react-redux/issues"
},
"homepage": "https://github.com/noriaki/hypernova-react-redux#readme",
"peerDependencies": {
"hypernova": "^1.0.0",
"react": "0.14.x || >= 15.x",
"react-dom": "0.14.x || >= 15.x",
"react-redux": "4.x",
"redux": "3.x"
},
"devDependencies": {
"babel-cli": "^6.10.1",
"babel-eslint": "^6.1.0",
"babel-preset-airbnb": "^2.0.0",
"babel-preset-stage-0": "^6.5.0",
"chai": "^3.5.0",
"eslint": "^2.13.1",
"eslint-config-airbnb": "^9.0.1",
"eslint-plugin-import": "^1.9.2",
"eslint-plugin-jsx-a11y": "^1.5.3",
"eslint-plugin-react": "^5.2.2",
"hypernova": "^1.0.0",
"istanbul": "^0.4.4",
"jsdom": "^9.2.1",
"mocha": "^2.5.3",
"react": "^15.1.0",
"react-dom": "^15.1.0",
"react-redux": "^4.4.5",
"redux": "^3.5.2",
"rimraf": "^2.5.2",
"sinon": "^1.17.4",
"sinon-sandbox": "^1.0.2"
},
"engines": {
"node": ">= 4.0"
},
"babel": {
"presets": [
"airbnb",
"stage-0"
]
}
}