-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
54 lines (54 loc) · 1.5 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
{
"name": "git-housekeeper",
"version": "0.1.5",
"description": "A housekeeping utility to clean up your git repository",
"main": "main.js",
"bin": "main.js",
"scripts": {
"build": "babel src -d lib",
"clean": "shx rm -rf lib",
"test": "echo \"No tests specified\" && exit 0",
"lint": "eslint src --ext .js --cache",
"prepublish": "npm run clean && npm run build",
"prettify": "prettier --write \"src/**/*.{js,json}\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/mediamonks/git-housekeeper.git"
},
"bugs": {
"url": "https://github.com/mediamonks/git-housekeeper/issues"
},
"homepage": "https://github.com/mediamonks/git-housekeeper#readme",
"author": "Floris Bernard",
"license": "ISC",
"devDependencies": {
"@babel/cli": "^7.5.5",
"@babel/core": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"eslint": "^6.1.0",
"eslint-config-airbnb-base": "^13.2.0",
"eslint-config-prettier": "^6.0.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-prettier": "^3.1.0",
"prettier": "^1.18.2",
"shx": "^0.3.2"
},
"dependencies": {
"es6-promisify": "^6.0.1",
"google-auth-library": "^5.1.0",
"googleapis": "^41.0.1",
"inquirer": "^6.5.0",
"lodash": "^4.17.15",
"moment": "^2.24.0",
"nodegit": "^0.24.3",
"opn": "^6.0.0",
"progress": "^2.0.3",
"request": "^2.88.0",
"request-promise-native": "^1.0.7",
"yargs": "^13.3.0"
},
"engines": {
"node": ">=10.8.0"
}
}