forked from hyl/node-warc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 1.6 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
{
"name": "node-warc",
"version": "2.1.0",
"description": "Parse And Write Web Archive Records (WARC) Files",
"main": "index.js",
"author": {
"name": "John Berlin",
"email": "n0tan3rd@gmail.com"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/N0taN3rd/node-warc.git"
},
"bugs": {
"url": "https://github.com/N0taN3rd/node-warc/issues"
},
"keywords": [
"warc",
"warc.gz",
"warc-parsing",
"web-archiving",
"web archiving Electron",
"web archiving Chrome",
"Electron",
"Chrome"
],
"engines": {
"node": ">=8.0.0"
},
"scripts": {
"lint": "standard | snazzy",
"fix-lint": "standard --fix",
"doc": "esdoc",
"test": "ava --verbose",
"test-report": "nyc ava --verbose",
"report-html": "nyc report --reporter=html"
},
"eslintConfig": {
"env": {
"node": true
}
},
"dependencies": {
"bluebird": "^3.7.2",
"eventemitter3": "^4.0.7",
"fs-extra": "^10.1.0",
"lodash.isempty": "^4.4.0",
"lodash.startcase": "^4.4.0",
"moment": "^2.29.4",
"readable-stream": "^4.2.0",
"untildify": "^4.0.0",
"uuid": "^9.0.0"
},
"devDependencies": {
"ava": "^4.3.3",
"esdoc": "^1.1.0",
"nyc": "^15.1.0",
"prettier-standard": "^16.4.1",
"pretty-time": "^1.1.0",
"rxjs": "^7.5.7",
"snazzy": "^9.0.0",
"standard": "^17.0.0"
},
"ava": {
"files": [
"test/*.js"
],
"source": [
"lib/**/*"
]
},
"standard": {
"ignore": [
"test/**"
]
},
"resolutions": {
"graceful-fs": "4.1.11"
}
}