-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
72 lines (72 loc) · 1.39 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
{
"name": "tartifacts",
"version": "2.0.0-15",
"description": "The tool to create artifacts for your assemblies.",
"license": "MIT",
"repository": "blond/tartifacts",
"author": "Andrew Abramov <[email protected]> (github.com/blond)",
"keywords": [
"artifacts",
"assemblies",
"tarball",
"tar",
"gzip",
"tar.gz",
"destination",
"copy",
"files"
],
"main": "index.js",
"files": [
"lib/**",
"index.js"
],
"engines": {
"node": ">= 12.18"
},
"dependencies": {
"archiver": "2.1.1",
"cp-file": "9.0.0",
"glob": "7.1.2",
"glob-stream": "6.1.0",
"graceful-fs": "4.1.11",
"lodash": "4.17.10",
"make-dir": "1.2.0",
"pify": "3.0.0",
"proxyquire": "1.8.0"
},
"devDependencies": {
"ava": "^0.18.0",
"coveralls": "^3.0.0",
"eslint": "^4.11.0",
"eslint-config-pedant": "^1.0.0",
"is-gzip": "^2.0.0",
"is-tar": "^1.0.0",
"mock-fs": "^4.4.2",
"nyc": "^11.4.1",
"sinon": "^6.1.3",
"stream-array": "^1.1.2",
"tar": "^4.0.2"
},
"scripts": {
"pretest": "eslint .",
"test": "nyc ava",
"unit-test": "ava",
"coveralls": "nyc report --reporter=text-lcov | coveralls"
},
"ava": {
"serial": true,
"verbose": true,
"files": [
"test/**/*.test.js"
],
"sources": [
"lib/**/*.js"
]
},
"greenkeeper": {
"ignore": [
"ava"
]
}
}