-
Notifications
You must be signed in to change notification settings - Fork 26
/
package.json
66 lines (66 loc) · 1.62 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
{
"name": "squidwarc",
"version": "1.2.0",
"main": "index.js",
"license": "Apache-2.0",
"scripts": {
"lint": "standard | snazzy",
"lint-fix": "standard --fix",
"format": "prettier-standard 'lib/**/*.js'",
"docs": "esdoc",
"publish-docs": "gh-pages -d docs"
},
"dependencies": {
"bluebird": "^3.5.3",
"chalk": "^2.4.2",
"chrome-remote-interface": "^0.27.0",
"class-autobind": "^0.1.4",
"commander": "^2.19.0",
"eventemitter3": "^3.1.0",
"filenamify-url": "^1.0.0",
"fs-extra": "^7.0.1",
"js-yaml": "^3.12.1",
"lodash": "^4.17.11",
"mime": "^2.4.0",
"moment": "^2.24.0",
"node-warc": "^3.2.0",
"normalize-url": "^4.1.0",
"parse-domain": "^2.1.7",
"pretty-error": "^2.1.1",
"pretty-ms": "^4.0.0",
"puppeteer": "^1.12.1",
"string": "^3.3.3",
"untildify": "^3.0.3",
"uuid": "^3.3.2",
"validator": "^10.11.0",
"yargs": "^12.0.5"
},
"devDependencies": {
"@types/fs-extra": "^5.0.4",
"benchmark": "^2.1.4",
"esdoc": "^1.1.0",
"esdoc-custom-theme": "^1.4.2",
"esdoc-ecmascript-proposal-plugin": "^1.0.0",
"esdoc-external-ecmascript-plugin": "^1.0.0",
"esdoc-external-nodejs-plugin": "^1.0.0",
"esdoc-inject-style-plugin": "^1.0.0",
"esdoc-node": "^1.0.4",
"esdoc-standard-plugin": "^1.0.0",
"gh-pages": "^2.0.1",
"microtime": "^3.0.0",
"prettier-standard": "^9.1.1",
"snazzy": "^8.0.0",
"standard": "^12.0.1"
},
"standard": {
"ignore": [
"clientInspected.js",
"noindex.js",
"t.js",
"saveMeAPage.js"
],
"globals": [
"$x"
]
}
}