-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·93 lines (93 loc) · 2 KB
/
Copy pathpackage.json
File metadata and controls
executable file
·93 lines (93 loc) · 2 KB
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
91
92
93
{
"name": "node-warc",
"version": "3.3.1",
"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 parsing",
"warc creation",
"web archiving",
"Electron",
"Chrome",
"puppeteer",
"request"
],
"engines": {
"node": ">=8.0.0"
},
"scripts": {
"lint": "standard | snazzy",
"fix-lint": "standard --fix",
"pretty": "prettier-standard lib/**/*.js",
"doc": "esdoc",
"test": "ava --verbose",
"test-report": "nyc ava --verbose",
"report-html": "nyc report --reporter=html",
"publish-docs": "gh-pages -d docs"
},
"eslintConfig": {
"env": {
"node": true
}
},
"dependencies": {
"eventemitter3": "^3.1.0",
"fs-extra": "^7.0.1",
"lodash": "^4.17.11",
"untildify": "^3.0.3",
"uuid": "^3.3.2"
},
"devDependencies": {
"@types/fs-extra": "^5.0.5",
"@types/node": "^11.9.5",
"@types/puppeteer": "^1.12.1",
"ava": "^1.2.1",
"chalk": "^2.4.2",
"esdoc": "^1.1.0",
"esdoc-ecmascript-proposal-plugin": "^1.0.0",
"esdoc-external-ecmascript-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",
"nyc": "^13.3.0",
"perfy": "^1.1.5",
"prettier-standard": "^9.1.1",
"pretty-time": "^1.1.0",
"puppeteer": "^1.12.2",
"rxjs": "^6.4.0",
"snazzy": "^8.0.0",
"standard": "^12.0.1"
},
"ava": {
"files": [
"test/*.js"
],
"sources": [
"lib/**/*"
]
},
"standard": {
"ignore": [
"test/**"
]
},
"resolutions": {
"**/graceful-fs": "4.1.15",
"**/universalify": "0.1.2"
}
}