forked from airbnb/hypernova
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
87 lines (87 loc) · 2.55 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": "hypernova",
"version": "2.5.0",
"description": "A service for server-side rendering your JavaScript views",
"main": "lib/index.js",
"scripts": {
"prepublish": "not-in-publish || safe-publish-latest && npm run build",
"clean": "rimraf lib",
"prebuild": "npm run clean",
"build": "babel src -d lib",
"lint": "eslint src test",
"pretest": "npm run --silent lint",
"test": "npm run coverage",
"pretests-only": "npm run build",
"tests-only": "npm run test:quick",
"precoverage": "npm run build",
"coverage": "babel-node node_modules/.bin/istanbul cover --report html node_modules/.bin/_mocha -- -R tap test/init.js test/*-test.js",
"postcoverage": "npm run cover:check",
"cover:check": "istanbul check-coverage && echo code coverage thresholds met, achievement unlocked!",
"test:quick": "babel-node node_modules/.bin/_mocha -R tap test/init.js test/*-test.js"
},
"repository": {
"type": "git",
"url": "[email protected]:airbnb/hypernova.git"
},
"keywords": [
"react",
"server",
"render",
"isomorphic",
"universal",
"express"
],
"author": "Josh Perez <[email protected]>",
"contributors": [
"Leland Richardson <[email protected]>",
"Jordan Harband <[email protected]>",
"Gary Borton <[email protected]>",
"Stephen Bush <[email protected]>",
"Ian Myers <[email protected]>",
"Jake Teton-Landis <[email protected]>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/airbnb/hypernova/issues"
},
"homepage": "https://github.com/airbnb/hypernova",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-transform-replace-object-assign": "^1.0.0",
"babel-preset-airbnb": "^2.5.3",
"chai": "^4.2.0",
"cheerio": "^1.0.0-rc.3",
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.17.3",
"in-publish": "^2.0.0",
"istanbul": "^1.0.0-alpha.2",
"mocha": "^3.5.3",
"mocha-wrap": "^2.1.2",
"rimraf": "^2.6.3",
"safe-publish-latest": "^1.1.2",
"sinon": "^3.3.0",
"sinon-sandbox": "^1.0.2"
},
"dependencies": {
"airbnb-js-shims": "^2 || ^3",
"bluebird": "^3.5.5",
"body-parser": "^1.19.0",
"express": "^4.17.1",
"glob": "^7.1.4",
"has": "^1.0.3",
"lru-cache": "^4.1.5",
"object.assign": "^4.1.0",
"winston": "^2.4.4"
},
"engines": {
"node": ">= 0.10"
},
"greenkeeper": {
"ignore": [
"mocha",
"sinon"
]
}
}