-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.4 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 2.4 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "koa-rerender",
"version": "0.2.2",
"homepage": "https://github.com/andy2046/rerender",
"description": "use Chrome headless to render a javascript-rendered page as HTML",
"engines": {
"node": ">=8.0.0",
"npm": ">=3.8"
},
"main": "src/rerender.js",
"scripts": {
"start": "node dist/bin/server.js",
"build": "babel src -d dist -s",
"dev": "nodemon src/bin/server.js",
"debug-brk": "npm run debug -- --break",
"test": "mocha --require test/_helpers test/**/*.spec.js --compilers js:babel-register -R dot --timeout 5000",
"test-watch": "npm run test -- --watch",
"lint": "eslint src/ test/",
"lint-watch": "esw -w src/ test/",
"cover": "cross-env NODE_ENV=test nyc npm test"
},
"author": "andy*()",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/andy2046/rerender.git"
},
"dependencies": {
"chrome-launcher": "~0.8.1",
"chrome-remote-interface": "~0.25.1"
},
"devDependencies": {
"awilix": "~2.2.5",
"awilix-koa": "~0.1.1",
"babel-preset-stage-1": "~6.24.1",
"babel-register": "~6.24.1",
"cheerio": "~1.0.0-rc.2",
"glob": "~7.1.1",
"kcors": "2",
"koa": "~2.2.0",
"koa-bodyparser": "~4.2.0",
"koa-convert": "~1.2.0",
"koa-respond": "~1.0.1",
"koa-router": "~7.1.1",
"lodash": "~4.17.4",
"source-map-support": "~0.4.14",
"yenv": "~1.0.6",
"app-module-path": "~2.2.0",
"babel-cli": "~6.24.1",
"babel-eslint": "~7.2.3",
"babel-plugin-istanbul": "~4.1.1",
"babel-plugin-source-map-support": "0.0.1",
"babel-plugin-transform-decorators-legacy": "~1.3.4",
"babel-plugin-transform-object-rest-spread": "~6.26.0",
"babel-plugin-transform-runtime": "~6.23.0",
"babel-preset-env": "~1.4.0",
"chai": "~3.5.0",
"cross-env": "~4.0.0",
"eslint": "~3.19.0",
"eslint-config-standard": "~10.2.1",
"eslint-plugin-import": "~2.2.0",
"eslint-plugin-node": "~4.2.2",
"eslint-plugin-promise": "~3.5.0",
"eslint-plugin-standard": "~3.0.1",
"eslint-watch": "~3.1.0",
"mocha": "~3.3.0",
"nodemon": "~1.11.0",
"nyc": "~10.2.0",
"sinon": "~2.1.0",
"sinon-chai": "~2.9.0",
"supertest": "~3.0.0"
},
"directories": {
"test": "test"
},
"nyc": {
"sourceMap": false,
"instrument": false,
"reporter": [
"text",
"lcov"
],
"include": [
"src/**/*.js"
]
}
}