-
Notifications
You must be signed in to change notification settings - Fork 26
/
package.json
36 lines (36 loc) · 880 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
{
"name": "git-delete-squashed",
"version": "1.0.4",
"description": "Delete branches that have been squashed and merged into master",
"scripts": {
"lint": "eslint bin/",
"test": "npm run lint"
},
"bin": {
"git-delete-squashed": "bin/git-delete-squashed.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/not-an-aardvark/git-delete-squashed.git"
},
"keywords": [
"git"
],
"author": "Teddy Katz",
"license": "MIT",
"bugs": {
"url": "https://github.com/not-an-aardvark/git-delete-squashed/issues"
},
"engines": {
"node": ">=4.0.0"
},
"homepage": "https://github.com/not-an-aardvark/git-delete-squashed#readme",
"dependencies": {
"bluebird": "^3.5.0"
},
"devDependencies": {
"eslint": "^3.18.0",
"eslint-config-not-an-aardvark": "^2.0.0",
"eslint-plugin-node": "^4.2.2"
}
}