-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.22 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
{
"name": "dl-tar",
"version": "0.8.1",
"description": "Download and extract a tar archive with the Observable API",
"repository": "shinnn/dl-tar",
"author": "Shinnosuke Watanabe (https://github.com/shinnn)",
"license": "ISC",
"scripts": {
"pretest": "eslint .",
"test": "nyc node test.js"
},
"files": [
"index.js"
],
"keywords": [
"http",
"https",
"get",
"request",
"download",
"extraction",
"extract",
"decompress",
"archive",
"tar",
"file",
"write",
"progress",
"observable"
],
"dependencies": {
"cancelable-pipeline": "^1.0.0",
"cancelable-pump": "^0.4.0",
"inspect-with-kind": "^1.0.5",
"is-plain-obj": "^1.1.0",
"load-request-from-cwd-or-npm": "^3.0.0",
"mkdirp": "^0.5.1",
"tar": "^4.4.6",
"zen-observable": "^0.8.9"
},
"devDependencies": {
"@shinnn/eslint-config": "^6.7.3",
"broken-npm-path": "^1.0.0",
"clear-module": "^3.0.0",
"eslint": "^5.7.0",
"lodash": "^4.17.11",
"nyc": "^13.1.0",
"nyc-config-common": "^1.0.1",
"p-retry": "^2.0.0",
"path-exists": "^3.0.0",
"read-utf8-file": "^2.0.0",
"rmfr": "^2.0.0",
"tape": "^4.9.1",
"tar-stream": "^1.6.2"
},
"eslintConfig": {
"extends": "@shinnn"
},
"nyc": {
"extends": "nyc-config-common"
}
}