This repository has been archived by the owner on Oct 9, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 43
/
package.json
84 lines (84 loc) · 2.18 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
{
"name": "hypernova-react",
"version": "2.1.0",
"description": "React bindings for Hypernova",
"main": "lib/index.js",
"scripts": {
"prepublish": "npm run build",
"clean": "rimraf lib coverage",
"prebuild": "npm run clean",
"build": "babel src -d lib",
"lint": "eslint src test",
"pretest": "npm run lint",
"test": "npm run coverage",
"react": "enzyme-adapter-react-install 16",
"pretests-only": "npm run react",
"tests-only": "npm run test:quick",
"precoverage": "npm run react && npm run build",
"coverage": "babel-node node_modules/.bin/istanbul cover --report=html node_modules/.bin/_mocha -- -R tap test/*-test.js",
"pretest:quick": "npm run build",
"test:quick": "babel-node node_modules/.bin/_mocha -R tap test/*-test.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/airbnb/hypernova-react.git"
},
"keywords": [
"react",
"hypernova",
"server",
"render",
"isomorphic",
"universal"
],
"files": [
"README.md",
"lib",
"src",
"test",
".eslintrc",
".babelrc"
],
"author": "Josh Perez <josh.perez@airbnb.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/airbnb/hypernova-react/issues"
},
"homepage": "https://github.com/airbnb/hypernova-react#readme",
"peerDependencies": {
"hypernova": "^2.0.0",
"react": "^0.14 || ^15 || ^16",
"react-dom": "^0.14 || ^15 || ^16"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-airbnb": "^2.5.3",
"chai": "^4.1.2",
"enzyme": "^3.4.1",
"enzyme-adapter-react-helper": "^1.3.0",
"eslint": "^5.3.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-react": "^7.11.1",
"hypernova": "^2.3.0",
"istanbul": "^0.4.5",
"jsdom": "^9.12.0",
"mocha": "^4.1.0",
"prop-types": "^15.6.2",
"react": "^0.14 || ^15 || ^16",
"react-dom": "^0.14 || ^15 || ^16",
"rimraf": "^2.6.2",
"sinon": "^6.1.5",
"sinon-sandbox": "^2.0.0"
},
"engines": {
"node": ">= 4.0"
},
"greenkeeper": {
"ignore": [
"jsdom",
"mocha"
]
}
}