-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.06 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
{
"name": "zgit-cli",
"version": "1.0.0",
"description": "",
"main": "dist/index.js",
"author": "",
"license": "ISC",
"scripts": {
"build": "tsc -p tsconfig.json",
"lint": "eslint . --ext .js,.ts",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"start": "nodemon",
"sync": "npm uninstall -g . && rimraf ./dist && rimraf $(node getNodePath.js) && npm run build && npm i -g --force ."
},
"bin": {
"zgit-cli": "./dist/index.js"
},
"dependencies": {
"enquirer": "^2.4.1",
"inversify": "^6.0.2",
"reflect-metadata": "^0.1.13",
"simple-git": "^3.25.0",
"yargs": "^17.7.2"
},
"devDependencies": {
"@types/inversify": "^2.0.33",
"@types/jest": "^29.5.7",
"@types/yargs": "^17.0.32",
"@typescript-eslint/eslint-plugin": "^6.9.1",
"@typescript-eslint/parser": "^6.9.1",
"eslint": "^8.52.0",
"jest": "^29.7.0",
"jest-mock-extended": "^3.0.5",
"nodemon": "^3.0.1",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
}
}