-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.74 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.74 KB
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
{
"name": "static-prerender-server",
"version": "0.0.0-development",
"description": "Starts a static server with prerender.",
"homepage": "https://github.com/bartlangelaan/static-prerender-server",
"author": {
"name": "Bart Langelaan",
"email": "langelaanbart@gmail.com",
"url": "http://bart.ninja"
},
"files": [
"lib"
],
"main": "lib/index.js",
"keywords": [
"expressjs",
"prerender",
"static"
],
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.4.0",
"coveralls": "^2.12.0",
"eslint": "^3.19.0",
"eslint-config-airbnb-base": "^11.1.3",
"eslint-plugin-import": "^2.2.0",
"jest": "^19.0.2",
"jest-cli": "^19.0.1",
"nsp": "^2.6.3",
"semantic-release": "^6.3.6"
},
"scripts": {
"prepublish": "nsp check",
"pretest": "eslint . --ignore-path .gitignore",
"start": "npm run build -- --watch",
"build": "babel src --out-dir lib --copy-files",
"test": "jest lib",
"start-server": "./lib/start.js",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
},
"bin": {
"static-prerender-server": "./lib/start.js"
},
"eslintConfig": {
"extends": "airbnb-base",
"env": {
"jest": true,
"node": true
}
},
"repository": "bartlangelaan/static-prerender-server",
"jest": {
"testEnvironment": "node",
"collectCoverage": true
},
"license": "MIT",
"dependencies": {
"babel-runtime": "^6.23.0",
"compression": "^1.6.2",
"express": "^4.15.2",
"prerender": "^4.4.1",
"prerender-node": "^2.7.1",
"update-notifier": "^2.2.0",
"witch": "latest"
}
}