-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 924 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
{
"name": "nectar",
"version": "6.0.0-0",
"description": "Create tar archive of files matching glob(s)",
"license": "MIT",
"repository": "sgtlambda/nectar",
"author": {
"name": "JM Versteeg",
"email": "janmerijnversteeg@gmail.com",
"url": "github.com/sgtlambda"
},
"main": "lib/index.js",
"scripts": {
"pretest": "eslint lib && eslint test",
"test": "mocha -R spec"
},
"keywords": [
"tar",
"archive",
"glob",
"promise"
],
"dependencies": {
"arrify": "^2.0.1",
"defa": "^1.0.0",
"globby": "^10.0.1",
"is-stream": "^2.0.0",
"lodash": "^4.17.15",
"make-globs-absolute": "1.0.0",
"micromatch": "^4.0.2",
"pify": "^4.0.1",
"pinkie-promise": "^2.0.1",
"tar-fs": "^2.0.0"
},
"devDependencies": {
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"del": "^5.1.0",
"eslint": "^6.3.0",
"mocha": "^6.2.0"
}
}