-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
70 lines (70 loc) · 1.46 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
{
"name": "@httptoolkit/browser-launcher",
"version": "2.3.0",
"description": "Detect, launch and stop browser versions",
"main": "index.js",
"types": "./types.d.ts",
"bin": {
"browser-launcher": "./bin.js"
},
"scripts": {
"build": "tsc --noEmit ./types.d.ts",
"pretest": "npm run build",
"test": "ava"
},
"directories": {
"example": "example",
"res": "res"
},
"dependencies": {
"@httptoolkit/osx-find-executable": "^2.0.1",
"headless": "^1.0.0",
"lodash": "^4.17.21",
"mkdirp": "^0.5.0",
"osenv": "^0.1.0",
"rimraf": "^2.6.1",
"simple-plist": "^1.0.0",
"uid": "^2.0.0",
"win-detect-browsers": "^7.0.0"
},
"repository": {
"type": "git",
"url": "git://github.com/httptoolkit/browser-launcher.git"
},
"homepage": "https://github.com/httptoolkit/browser-launcher",
"keywords": [
"browser",
"headless",
"phantom",
"chrome",
"firefox",
"chromium",
"safari",
"ie",
"opera",
"osx",
"windows"
],
"author": "Tim Perry <[email protected]>",
"contributors": [
"James Halliday <[email protected]> (http://substack.net)",
"CKSource (http://cksource.com/)",
"benderjs",
"mitchhentges"
],
"license": "MIT",
"engine": {
"node": ">=12"
},
"devDependencies": {
"@types/node": "^12.0.2",
"ava": "^0.25.0",
"typescript": "^3.4.5"
},
"ava": {
"failFast": true,
"files": [
"test/**/*.js"
]
}
}