-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
58 lines (58 loc) · 1.38 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
{
"name": "purgitory",
"version": "0.1.7",
"description": "Purge local branches that have been merged to the main branch in remote",
"main": "bin/purgit.js",
"bin": {
"purgitory": "./bin/purgit.js",
"purgit": "./bin/purgit.js"
},
"repository": "git@github.com:sduduzog/purgitory.git",
"author": "sduduzog <gumedesduduzo@gmail.com>",
"license": "GPL-3.0-only",
"keywords": [
"purge",
"git",
"prune",
"branches",
"purgit",
"merged",
"purgitory"
],
"private": false,
"scripts": {
"clean": "rimraf ./bin",
"build": "tsc",
"rebuild": "run-s clean build",
"dev": "tsc -w",
"stage": "git add *.js *.ts",
"lint": "eslint --fix",
"test": "jest"
},
"dependencies": {
"inquirer": "^7.3.3",
"yargs": "^16.0.3"
},
"engines": {
"node": ">=10.10.0"
},
"devDependencies": {
"@types/inquirer": "^7.3.1",
"@types/jest": "^26.0.14",
"@types/node": "^14.10.1",
"@types/yargs": "^15.0.5",
"@typescript-eslint/eslint-plugin": "^4.1.0",
"@typescript-eslint/parser": "^4.1.0",
"add": "^2.0.6",
"eslint": "^7.8.1",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"jest": "^26.4.2",
"jest-junit": "^11.1.0",
"prettier": "^2.1.1",
"rimraf": "^3.0.2",
"ts-jest": "^26.3.0",
"typescript": "^4.4.4",
"yarn-run-all": "^3.1.1"
}
}