-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.64 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.64 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
{
"scripts": {
"start": "node ./scripts/start.js",
"stop": "node ./scripts/stop.js",
"restart": "node ./scripts/restart.js",
"debug": "node --inspect ./scripts/start.js",
"test": "node ./test/batch.js"
},
"dependencies": {
"@koa/cors": "^2.2.1",
"clusterun": "^0.1.1",
"function-sandbox": "^1.1.2",
"http-graceful-shutdown": "^2.1.0",
"ip": "^1.1.5",
"koa": "^2.3.0",
"koa-bodyparser": "^4.2.0",
"koa-router": "^7.2.1",
"koa-session": "^5.5.0",
"node-fetch": "^2.0.0",
"puppeteer": "^1.0.0",
"puppeteer-service-client": "^0.1.6",
"socket.io": "^2.0.4",
"sticky-session": "^1.1.2"
},
"devDependencies": {
"Base64": "^1.0.1",
"babel-core": "^6.26.0",
"eslint": "^4.9.0",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-node": "^5.2.0",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-standard": "^3.0.1",
"http-server": "^0.11.1",
"open": "0.0.5",
"readline-sync": "^1.4.9"
},
"name": "puppeteer-service",
"description": "Run headless Chrome (aka Puppeteer) as a service, for web crawling, remote controlling and so on.",
"version": "0.4.8",
"main": "src/index.js",
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/shenfe/puppeteer-service.git"
},
"keywords": [
"puppeteer",
"headless-chrome",
"service",
"web-crawler"
],
"author": "hengwu",
"license": "MIT",
"bugs": {
"url": "https://github.com/shenfe/puppeteer-service/issues"
},
"homepage": "https://github.com/shenfe/puppeteer-service#readme"
}