-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
55 lines (55 loc) · 1.4 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
{
"name": "gitzip",
"version": "1.0.0",
"description": "Archives ignoring files from gitignore",
"main": "lib/gitzip.js",
"bin": {
"gitzip": "bin/cli.js"
},
"scripts": {
"conventional-changelog": "conventional-changelog",
"lint": "eslint .",
"lint-fix": "eslint --fix .",
"unit-test": "jest",
"test": "npm run lint && npm run unit-test",
"changelog": "npm run conventional-changelog -- -p angular -i CHANGELOG.md -s"
},
"author": "veshu <tcveshu@gmail.com>",
"license": "MIT",
"keywords": [
"git",
"git-archive",
"node-zip",
"zip",
"gitignore zip",
"gitzip"
],
"dependencies": {
"archiver": "^3.0.0",
"async": "^2.6.1",
"globby": "^8.0.1",
"mkdirp": "^1.0.3",
"yargonaut": "^1.1.4",
"yargs": "^12.0.5"
},
"repository": "git@github.com:veshu/gitzip.git",
"homepage": "https://github.com/veshu/gitzip",
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/preset-env": "^7.9.0",
"babel-jest": "^25.2.1",
"chai": "^4.2.0",
"command-line-test": "^1.0.10",
"conventional-changelog-cli": "^2.0.31",
"eslint": "^5.6.1",
"eslint-config-prettier": "^3.1.0",
"eslint-plugin-prettier": "^2.7.0",
"fs": "0.0.1-security",
"jest": "^25.2.1",
"klaw-sync": "^6.0.0",
"prettier": "^1.14.3",
"regenerator-runtime": "^0.12.1",
"rimraf": "^2.6.2",
"unzip-stream": "^0.3.0"
}
}