-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 975 Bytes
/
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
{
"name": "file-to-tar",
"version": "0.4.0",
"description": "Create a tar archive from a single file",
"repository": "shinnn/file-to-tar",
"author": "Shinnosuke Watanabe (https://github.com/shinnn)",
"license": "ISC",
"scripts": {
"pretest": "eslint index.js test.js",
"test": "nyc node test.js"
},
"files": [
"index.js"
],
"keywords": [
"file",
"tar",
"archive",
"compress",
"compression",
"pack",
"progress",
"observable"
],
"dependencies": {
"cancelable-pump": "^0.4.0",
"inspect-with-kind": "^1.0.5",
"is-plain-obj": "^1.1.0",
"is-stream": "^1.1.0",
"tar-fs": "^1.16.3",
"zen-observable": "^0.8.11"
},
"devDependencies": {
"@shinnn/eslint-config": "^6.8.0",
"enumerate-files": "^2.0.0",
"eslint": "^5.8.0",
"nyc": "^13.1.0",
"nyc-config-common": "^1.0.1",
"rmfr": "^2.0.0",
"tape": "^4.9.1",
"tar": "^4.4.6"
},
"eslintConfig": {
"extends": "@shinnn"
},
"nyc": {
"extends": "nyc-config-common"
}
}