forked from airbnb/hypernova
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 loc) · 2.37 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
{
"name": "hypernova",
"version": "1.0.0",
"description": "A service for server-side rendering your JavaScript views",
"main": "lib/index.js",
"scripts": {
"prepublish": "npm run build",
"build": "rimraf lib && babel src -d lib",
"lint": "eslint src test",
"pretest": "npm run --silent lint",
"test": "npm run build && npm run test:coverage && npm run --silent cover:check",
"tests-only": "npm run build && npm run test:quick",
"test:coverage": "babel-node node_modules/.bin/istanbul cover --report html node_modules/.bin/_mocha -- -R tap test/init.js test/*-test.js",
"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]>"
],
"files": [
"README.md",
"lib",
"src",
"server.js",
"test",
".eslintrc",
".babelrc"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/airbnb/hypernova/issues"
},
"homepage": "https://github.com/airbnb/hypernova",
"devDependencies": {
"babel-cli": "^6.9.0",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-preset-airbnb": "^2.0.0",
"chai": "^3.5.0",
"cheerio": "^0.20.0",
"eslint": "^2.11.1",
"eslint-config-airbnb": "^9.0.1",
"eslint-plugin-import": "^1.8.1",
"eslint-plugin-jsx-a11y": "^1.3.0",
"eslint-plugin-react": "^5.1.1",
"istanbul": "^1.0.0-alpha.2",
"mocha": "^2.5.3",
"mocha-wrap": "^2.0.4",
"rimraf": "^2.5.2",
"sinon": "^1.17.4",
"sinon-sandbox": "^1.0.2"
},
"dependencies": {
"airbnb-js-shims": "^1.0.0",
"bluebird": "^3.4.0",
"body-parser": "^1.15.1",
"express": "^4.13.4",
"glob": "^7.0.3",
"has": "^1.0.1",
"lru-cache": "^4.0.1",
"winston": "^2.2.0"
},
"engines": {
"node": ">= 0.10"
}
}