-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
56 lines (56 loc) · 1.3 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
{
"name": "qommit",
"version": "0.0.8",
"description": "Git quick commit tool",
"main": "index.js",
"scripts": {
"prepublish": "npm run build",
"build": "tsc src/bin.ts --outDir build",
"test": "jest --coverage",
"lint": "eslint .",
"prettier": "prettier . --write"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hsh2001/qommit.git"
},
"keywords": [
"git"
],
"author": "HSH2001",
"license": "MIT",
"bugs": {
"url": "https://github.com/hsh2001/qommit/issues"
},
"bin": {
"qommit": "./build/bin.js"
},
"homepage": "https://github.com/hsh2001/qommit#readme",
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"dependencies": {
"chalk": "4.1.0",
"execa": "4.1.0",
"inquirer": "7.3.3"
},
"devDependencies": {
"@types/inquirer": "7.3.1",
"@types/jest": "26.0.15",
"@types/node": "14.14.8",
"@typescript-eslint/eslint-plugin": "4.8.1",
"@typescript-eslint/parser": "4.8.1",
"eslint": "7.13.0",
"eslint-config-prettier": "6.15.0",
"eslint-plugin-eslint-comments": "3.2.0",
"eslint-plugin-import": "2.22.1",
"husky": "4.3.0",
"jest": "26.6.3",
"prettier": "2.1.2",
"pretty-quick": "3.1.0",
"ts-jest": "26.4.4",
"typescript": "4.0.5"
}
}