-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
47 lines (47 loc) · 1.24 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
{
"name": "cherry-pick",
"version": "0.5.0",
"description": "🍒⛏📦 Build tool to generate proxy directories.",
"main": "./lib/index.js",
"bin": "./bin/cherry-pick.js",
"files": [
"bin",
"lib"
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"release:patch": "npm version patch && npm publish && git push --follow-tags",
"release:minor": "npm version minor && npm publish && git push --follow-tags",
"release:major": "npm version major && npm publish && git push --follow-tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Andarist/cherry-pick.git"
},
"keywords": [
"build",
"tool",
"es",
"commonjs",
"cjs",
"cherry-pick"
],
"author": "Mateusz Burzyński <[email protected]> (https://github.com/Andarist)",
"license": "MIT",
"bugs": {
"url": "https://github.com/Andarist/cherry-pick/issues"
},
"homepage": "https://github.com/Andarist/cherry-pick#readme",
"dependencies": {
"chalk": "^2.4.2",
"read-pkg-up": "^6.0.0",
"rimraf": "^2.6.3",
"tiny-glob": "^0.2.6",
"yargs": "^13.2.4"
},
"devDependencies": {
"husky": "^2.5.0",
"lint-staged": "^8.2.1",
"prettier": "^1.18.2"
}
}