forked from browserless/browserless
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
116 lines (116 loc) · 3.14 KB
/
package.json
File metadata and controls
116 lines (116 loc) · 3.14 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"name": "browserless-chrome",
"version": "1.20.0",
"description": "Chrome-as-a-service on your own hardware or in the cloud.",
"repository": "browserless/chrome",
"main": "build/index.js",
"files": [
"build/main.css",
"build/main.js"
],
"scripts": {
"build": "npm run clean && tsc",
"clean": "rimraf build",
"deploy": "DEBUG=browserless* ./scripts/deploy.js",
"dev": "npm run build && env-cmd -f ./.env.dev node build/index.js",
"meta": "./scripts/get-meta.js",
"start": "node ./build",
"lint": "tslint -c tslint.json 'src/**/*.ts'",
"test": "DEBUG=quiet jest --runInBand",
"prepush": "npm run lint && npm test",
"symlink-chrome": "node ./scripts/symlink-chrome",
"external": "rimraf debugger/devtools && node ./scripts/install-external-deps.js",
"post-install": "npm run symlink-chrome && npm run meta && npm run external"
},
"puppeteerVersions": {
"puppeteer-1.17.0": "1.17.0",
"puppeteer-1.18.1": "1.18.1",
"puppeteer-1.19.0": "1.19.0",
"puppeteer-1.20.0": "1.20.0",
"puppeteer-2.0.0": "2.0.0",
"chrome-stable": "1.15.0"
},
"chromeVersions": [
"puppeteer-2.0.0",
"puppeteer-1.20.0",
"puppeteer-1.19.0",
"puppeteer-1.18.1",
"puppeteer-1.17.0",
"chrome-stable"
],
"author": "jgriffith",
"license": "GPL-3.0",
"dependencies": {
"@cypress/xvfb": "^1.2.4",
"@types/archiver": "^3.0.0",
"@types/cookie": "^0.3.2",
"@types/cors": "^2.8.4",
"@types/express": "^4.16.1",
"@types/http-proxy": "^1.17.0",
"@types/jest": "^24.0.6",
"@types/joi": "^14.3.2",
"@types/lodash": "^4.14.123",
"@types/multer": "^1.3.7",
"@types/node": "^12.0.3",
"@types/node-fetch": "^2.3.2",
"@types/puppeteer": "^1.12.1",
"@types/request": "^2.48.2",
"@types/rimraf": "^2.0.2",
"@types/shortid": "0.0.29",
"archiver": "^3.0.0",
"bluebird": "^3.5.5",
"body-parser": "^1.18.2",
"chromedriver": "^78.0.1",
"cookie": "^0.4.0",
"cors": "^2.8.4",
"debug": "^4.0.0",
"express": "^4.16.2",
"express-prom-bundle": "^5.1.5",
"fs-extra": "^8.1.0",
"get-port": "^5.0.0",
"http-proxy": "^1.16.2",
"jest": "^24.1.0",
"joi": "^14.1.1",
"lighthouse": "^5.0.0",
"lodash": "^4.17.11",
"multer": "^1.4.1",
"node-fetch": "^2.2.0",
"node-pdftk": "^2.0.0",
"prom-client": "^11.5.3",
"puppeteer": "^2.0.0",
"queue": "^6.0.0",
"request": "^2.83.0",
"rimraf": "^3.0.0",
"selenium-webdriver": "^4.0.0-alpha.1",
"systeminformation": "^4.14.8",
"timecut": "^0.1.1",
"tree-kill": "^1.2.0",
"ts-jest": "^24.0.0",
"tslint": "^5.10.0",
"typescript": "^3.3.3",
"untildify": "^4.0.0",
"vm2": "^3.8.1"
},
"devDependencies": {
"env-cmd": "^10.0.0",
"husky": "^3.0.0"
},
"jest": {
"testEnvironment": "node",
"coverageDirectory": "../coverage/",
"collectCoverageFrom": [
"**/*.ts",
"!*.*"
],
"rootDir": "src",
"moduleFileExtensions": [
"ts",
"js",
"json"
],
"transform": {
".(ts)": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.tsx?$"
}
}