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 213
/
Copy pathpackage.json
91 lines (91 loc) · 2.67 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
88
89
90
91
{
"name": "hypernova",
"version": "2.5.0",
"description": "A service for server-side rendering your JavaScript views",
"main": "lib/index.js",
"scripts": {
"prepublishOnly": "safe-publish-latest && npm run build",
"prepublish": "not-in-publish || npm run prepublishOnly",
"clean": "rimraf lib",
"prebuild": "npm run clean",
"build": "babel src -d lib",
"prelint": "npm run build",
"lint": "eslint src test",
"pretest": "npm run --silent lint",
"test": "npm run coverage",
"pretests-only": "npm run build",
"tests-only": "npm run test:quick",
"posttest": "aud --production",
"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": "git@github.com:airbnb/hypernova.git"
},
"keywords": [
"react",
"server",
"render",
"isomorphic",
"universal",
"express"
],
"author": "Josh Perez <josh.perez@airbnb.com>",
"contributors": [
"Leland Richardson <leland.richardson@airbnb.com>",
"Jordan Harband <ljharb@gmail.com>",
"Gary Borton <gary.borton@airbnb.com>",
"Stephen Bush <stephen.bush@airbnb.com>",
"Ian Myers <ian.myers@airbnb.com>",
"Jake Teton-Landis <jake.tl@airbnb.com>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/airbnb/hypernova/issues"
},
"homepage": "https://github.com/airbnb/hypernova",
"devDependencies": {
"aud": "^2.0.0",
"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.3.6",
"cheerio": "=1.0.0-rc.3",
"eslint": "^8.14.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.26.0",
"in-publish": "^2.0.1",
"mocha": "^3.5.3",
"mocha-wrap": "^2.1.2",
"nyc": "^10.3.2",
"rimraf": "^2.6.3",
"safe-publish-latest": "^2.0.0",
"sinon": "^3.3.0",
"sinon-sandbox": "^1.0.2"
},
"dependencies": {
"airbnb-js-shims": "^2 || ^3",
"bluebird": "^3.7.2",
"body-parser": "^1.20.0",
"express": "^4.18.0",
"glob": "^7.2.0",
"has": "^1.0.3",
"lru-cache": "^4.1.5",
"object.assign": "^4.1.2",
"winston": "^2.4.5"
},
"engines": {
"node": ">= 0.10"
},
"greenkeeper": {
"ignore": [
"mocha",
"sinon"
]
}
}