-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.09 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
{
"name": "gdiff",
"version": "2.0.0",
"description": "Utility to detect changed files between 2 commits",
"bin": {
"gdiff": "./bin/index.js"
},
"scripts": {
"test": "jest",
"jest": "jest --watch",
"clean": "rimraf ./bin",
"build": "npm run clean && tsc",
"prepare": "husky install",
"lint": "prettier --write .",
"lint-staged": "pretty-quick --staged",
"prepack": "rimraf ./gdiff-*.tgz && npm run build"
},
"keywords": [
"git"
],
"author": "Lim Chun Hoong",
"license": "MIT",
"homepage": "https://github.com/chunhoong/gdiff#readme",
"repository": {
"type": "git",
"url": "https://github.com/chunhoong/gdiff.git"
},
"devDependencies": {
"@types/jest": "^26.0.22",
"@types/shelljs": "^0.8.8",
"@types/yargs": "^16.0.1",
"husky": "^6.0.0",
"jest": "^26.6.3",
"prettier": "^2.2.1",
"pretty-quick": "^3.1.0",
"rimraf": "^3.0.2",
"ts-jest": "^26.5.4",
"typescript": "^4.2.4"
},
"dependencies": {
"chalk": "^4.1.0",
"cosmiconfig": "^7.0.0",
"shelljs": "^0.8.4",
"yargs": "^16.2.0"
}
}