-
Notifications
You must be signed in to change notification settings - Fork 33
/
package.json
51 lines (51 loc) · 948 Bytes
/
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
{
"name": "chromium",
"version": "3.0.3",
"description": "Chromium binaries for Node.js projects",
"repository": "dtolstyi/node-chromium",
"main": "index.js",
"os": [
"darwin",
"linux",
"win32"
],
"scripts": {
"postinstall": "node install.js",
"test": "xo && ava --verbose",
"test-only": "ava --verbose"
},
"files": [
"cache.js",
"config.js",
"index.js",
"install.js",
"utils.js"
],
"keywords": [
"chromium",
"chrome",
"browser"
],
"author": "Dmytro TOLSTYI <[email protected]>",
"license": "MIT",
"ava": {
"timeout": "15m"
},
"xo": {
"space": 4
},
"dependencies": {
"cachedir": "^2.3.0",
"debug": "^4.1.0",
"extract-zip": "^1.7.0",
"got": "^11.5.1",
"progress": "^2.0.3",
"rimraf": "^2.7.1",
"tmp": "0.0.33",
"tunnel": "^0.0.6"
},
"devDependencies": {
"ava": "^3.11.0",
"xo": "^0.32.1"
}
}