-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.64 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
{
"name": "@duylam/git-branch-clean",
"version": "1.0.6",
"description": "A command line tool to clean up unused git branches",
"bin": {
"git-branch-clean": "./cli.js"
},
"keywords": [
"git",
"clean-up",
"tool"
],
"homepage": "https://github.com/duylam/git-branch-clean",
"bugs": "https://github.com/duylam/git-branch-clean/issues",
"repository": {
"type": "git",
"url": "https://github.com/duylam/git-branch-clean"
},
"license": "MIT",
"author": {
"name": "Duy Lam",
"email": "[email protected]"
},
"files": [
"*"
],
"scripts": {
"lint": "eslint src/**/*.js",
"format": "prettier --write 'src/**/*.js'",
"build": "bash scripts/build.sh",
"package": "rm -rf dist; mkdir dist; rollup -c",
"start": "npm run build; chokidar 'src/**/*.js' -c 'npm run build'",
"update-toc": "markdown-toc -i ./README.md"
},
"engines": {
"node": ">=8.0.0"
},
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.1",
"@babel/preset-env": "^7.0.0",
"@babel/register": "^7.0.0",
"@rollup/plugin-commonjs": "^11.0.2",
"babel-eslint": "^10.1.0",
"chokidar-cli": "^2.1.0",
"del-cli": "^3.0.0",
"eslint": "^6.8.0",
"markdown-toc": "^1.2.0",
"prettier": "^1.19.1",
"replace": "^1.1.5",
"rollup": "^2.0.6",
"rollup-plugin-copy": "^3.3.0",
"rollup-plugin-preserve-shebangs": "^0.1.2",
"rollup-plugin-terser": "^5.3.0"
},
"dependencies": {
"async": "^3.2.0",
"bluebird": "^3.7.2",
"debug": "^4.1.1",
"lodash": "^4.17.15",
"yargs": "^15.0.2"
}
}