forked from dtolstyi/node-chromium
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.05 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
{
"name": "chromium-revision",
"version": "1.0.0",
"description": "Chromium binaries for Node.js projects with the ability to specify revision number",
"repository": "https://github.com/dhAlcojor/node-chromium-revision",
"main": "index.js",
"os": [
"darwin",
"linux",
"win32"
],
"scripts": {
"postinstall": "node install.js",
"test": "xo && ava --verbose",
"test-only": "ava --verbose"
},
"files": [
"config.js",
"index.js",
"install.js",
"utils.js"
],
"keywords": [
"chromium",
"chrome",
"browser"
],
"author": "Daniel Hernández Alcojor <dhalcojor@gmail.com>",
"license": "MIT",
"xo": {
"space": 4,
"overrides": [
{
"files": "test-install.js",
"rules": {
"no-await-in-loop": "off"
}
}
]
},
"dependencies": {
"debug": "^4.1.0",
"extract-zip": "^1.6.7",
"got": "^7.1.0",
"tmp": "0.0.33",
"tunnel": "^0.0.6"
},
"devDependencies": {
"ava": "^0.22.0",
"rimraf": "^2.6.2",
"xo": "^0.18.2"
}
}