-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
47 lines (47 loc) · 1.36 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
{
"name": "clear-branches",
"version": "1.0.3",
"description": "easy way to clear your local branches",
"main": "dist/clear-branches.js",
"repository": "git@github.com:jmlavoier/clear-branches.git",
"author": "João Lavoier <joao.lavoier@gmail.com>",
"license": "MIT",
"bin": {
"clear-branches": "dist/main.js"
},
"scripts": {
"clear-branches": "node dist/main.js",
"build": "tsc -p ./tsconfig-build.json",
"dev": "tsc -p ./tsconfig-build.json --watch",
"test": "jest --config=./jest.config.js",
"test:watch": "jest --config=./jest.config.js --coverage=false",
"lint": "eslint src"
},
"preferGlobal": true,
"engines" : {
"npm" : ">=8.11.0 <=9.2.0",
"node" : ">=16.15.1 <=19.3.0"
},
"devDependencies": {
"@types/jest": "^29.2.5",
"@types/node": "^18.11.18",
"@types/prompts": "^2.4.2",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"eslint": "^8.31.0",
"eslint-config-standard": "^17.0.0",
"eslint-config-standard-with-typescript": "^31.0.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-n": "^15.0.0",
"eslint-plugin-promise": "^6.0.0",
"jest": "^29.3.1",
"prettier": "^2.8.1",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"typescript": "*"
},
"dependencies": {
"commander": "^10.0.0",
"prompts": "^2.4.2"
}
}