-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.01 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
{
"name": "@boyeborg/carve",
"version": "1.4.0",
"description": "Download npm packages and their dependencies.",
"author": "Boye Borg",
"license": "MIT",
"main": "index.js",
"bin": {
"carve": "cli.js"
},
"scripts": {
"release:patch": "npm version patch && npm publish --access public && git push origin master --follow-tags",
"release:minor": "npm version minor && npm publish --access public && git push origin master --follow-tags",
"release:major": "npm version major && npm publish --access public && git push origin master --follow-tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/boyeborg/carve.git"
},
"bugs": {
"url": "https://github.com/boyeborg/carve/issues"
},
"homepage": "https://github.com/boyeborg/carve",
"keywords": [
"npm",
"download",
"packages",
"package"
],
"devDependencies": {
"prettier": "^1.19.1"
},
"dependencies": {
"listr": "^0.14.3",
"meow": "^7.1.0",
"pacote": "^11.1.11"
}
}