-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
81 lines (81 loc) · 1.93 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "@beardyman/git-better",
"version": "1.6.0",
"public": true,
"main": "index.js",
"author": "@beardyman",
"license": "ISC",
"description": "CLI Tool-suite for common git workflow operations including workflows",
"engines": {
"node": ">=10"
},
"repository": {
"type": "git",
"url": "https://github.com/beardyman/git-better"
},
"keywords": [
"git",
"gitflow",
"gitbetter",
"git-better",
"workflow",
"start",
"git-start",
"finish",
"git-finish",
"open",
"git-open",
"cli"
],
"bin": {
"git-finish": "bin/git-finish.js",
"git-rename": "bin/git-rename.js",
"git-open": "bin/git-open.js",
"git-pr": "bin/git-pr.js",
"git-promote": "bin/git-promote.js",
"git-start": "bin/git-start.js",
"git-update": "bin/git-update.js",
"git-better-init": "bin/git-config.js"
},
"man": [
"./man/git-better-init.1",
"./man/git-finish.1",
"./man/git-promote.1",
"./man/git-rename.1",
"./man/git-open.1",
"./man/git-pr.1",
"./man/git-start.1",
"./man/git-update.1"
],
"scripts": {
"lint": "eslint . --fix",
"test:base": "mocha --recursive test/unit/",
"test:cov": "nyc -r lcov -r text-summary --report-dir test/reports/unit/ npm run test:base",
"test": "npm run test:ci",
"test:ci": "npm run test:cov",
"test:dev": "npm run test:cov -- -- --watch"
},
"dependencies": {
"lodash": "^4.17.21",
"minimist": "^1.2.5",
"open": "^7.3.0",
"simple-git": "^3.6.0",
"update-notifier": "^5.0.0"
},
"devDependencies": {
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"eslint": "^7.16.0",
"eslint-plugin-mocha": "^8.0.0",
"eslint-plugin-sort-keys-fix": "^1.1.1",
"husky": "^7.0.0",
"lint-staged": "^10.5.3",
"mocha": "^9.2.1",
"nyc": "^15.1.0",
"proxyquire": "^2.1.3",
"sinon": "^9.2.2"
},
"lint-staged": {
"**/*.js": "npm run lint --"
}
}