-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
90 lines (90 loc) · 2.18 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "chrome-remote-interface-extra",
"description": "Bringing a puppeteer like API and more to the chrome-remote-interface by cyrus-and",
"main": "./index.js",
"version": "1.1.1",
"license": "Apache-2.0",
"keywords": [
"chrome",
"chrome-remote-interface",
"headeless",
"puppeteer",
"Chrome DeveTools Protocol",
"CDP"
],
"repository": {
"type": "git",
"url": "https://github.com/N0taN3rd/chrome-remote-interface-extra.git"
},
"dependencies": {
"bufferutil": "^4.0.1",
"chrome-remote-interface": "^0.27.1",
"debug": "^4.1.1",
"eventemitter3": "^3.1.2",
"fs-extra": "^8.0.1",
"gh-pages": "^2.0.1",
"mime": "^2.4.3",
"tough-cookie": "^3.0.1",
"uuid": "^3.3.2",
"ws": "^7.0.0"
},
"devDependencies": {
"@babel/generator": "^7.4.4",
"@babel/parser": "^7.4.5",
"@babel/traverse": "^7.4.5",
"@babel/types": "^7.4.4",
"@types/fs-extra": "^7.0.0",
"ava": "^1.4.1",
"commander": "^2.20.0",
"esdoc": "^1.1.0",
"esdoc-ecmascript-proposal-plugin": "^1.0.0",
"esdoc-external-ecmascript-plugin": "^1.0.0",
"esdoc-node": "^1.0.4",
"esdoc-standard-plugin": "^1.0.0",
"fastify": "^2.4.1",
"fastify-basic-auth": "^0.4.0",
"fastify-favicon": "^2.0.0",
"fastify-formbody": "^3.1.0",
"fastify-plugin": "^1.6.0",
"fastify-static": "^2.4.0",
"fastparallel": "^2.3.0",
"file-url": "^3.0.0",
"jpeg-js": "^0.3.5",
"pixelmatch": "^4.0.2",
"pngjs": "^3.4.0",
"prettier-standard": "^9.1.1",
"standard": "^12.0.1",
"text-diff": "^1.0.1",
"tls-keygen": "^3.7.0"
},
"scripts": {
"build-index": "node generateIndex.js",
"doc": "esdoc",
"publish-docs": "gh-pages -d docs",
"test": "ava",
"test-only": "ava ./test/accessibility.js"
},
"resolutions": {
"*/**/graceful-fs": "~4.1.2",
"*/**/universalify": "~0.1.2",
"*/**/bufferutil": "^4.0.1",
"*/**/ws": "^6.2.1"
},
"eslintConfig": {
"env": {
"browser": true,
"node": true
},
"globals": {
"fetch": true
}
},
"ava": {
"concurrency": 1,
"verbose": true,
"serial": true,
"sources": [
"lib/**/*"
]
}
}