-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 722 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 722 Bytes
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
{
"name": "git-diffprompt",
"version": "1.0.0",
"bin": {
"git-diffprompt": "./index.js"
},
"description": "Interactive git difftool",
"main": "index.js",
"scripts": {
"test": "jest --detectOpenHandles"
},
"author": "",
"license": "ISC",
"dependencies": {
"@types/jest": "^26.0.15",
"inquirer": "^7.3.3",
"log4js": "^6.3.0",
"module-alias": "^2.2.2",
"shelljs": "^0.8.4"
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"eslint": "^7.12.1",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.1.4",
"jest": "^26.6.2",
"prettier": "^2.1.2"
}
}