-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.39 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
57
{
"name": "guser",
"version": "1.0.10",
"description": "",
"main": "index.js",
"scripts": {
"test": "jest --coverage",
"test-watch": "jest --watch",
"test-update": "jest --updateSnapshot",
"lint": "eslint . --ignore-path ./.lintignore",
"format-fix-all": "prettier . --ignore-path ./.lintignore --write",
"make-badges": "jest-coverage-badges --output './static' && git add static/* && git commit -m 'update badges' --no-verify"
},
"bin": "./index.js",
"author": "[email protected]",
"license": "MIT",
"bugs": {
"url": "https://github.com/krnsk0/guser/issues"
},
"homepage": "https://github.com/krnsk0/guser#readme",
"keywords": [
"git",
"cli",
"interactive",
"config",
"user"
],
"repository": {
"type": "git",
"url": "[email protected]:krnsk0/guser.git"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "npm run test"
}
},
"lint-staged": {
"*.{js,css,md,json}": "prettier --write"
},
"dependencies": {
"edit-json-file": "1.7.0",
"kleur": "4.1.0",
"prompts": "2.3.2",
"shelljs": "0.8.5"
},
"devDependencies": {
"eslint-config-node": "4.1.0",
"eslint-config-prettier": "6.11.0",
"eslint-plugin-jest": "23.20.0",
"husky": "4.3.8",
"jest": "26.4.0",
"jest-coverage-badges": "1.0.0",
"lint-staged": "10.5.4",
"prettier": "2.0.5"
}
}