-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.54 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.54 KB
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
58
59
60
61
62
63
64
65
66
{
"name": "git-hooks-wrapper",
"version": "0.7.1",
"private": false,
"description": "Wrapper scripts for Git Hooks",
"bin": {
"git-hooks-wrapper": "./ghw",
"ghw": "./ghw"
},
"dependencies": {},
"devDependencies": {
"@types/globby": "^9.1.0",
"@types/jest": "^25.2.1",
"@types/node": "^13.11.1",
"@types/semver": "^7.1.0",
"globby": "^11.0.0",
"jest": "^25.3.0",
"np": "^6.2.0",
"semver": "^7.2.2",
"ts-jest": "^25.3.1",
"typescript": "^3.9.7"
},
"scripts": {
"release:product": "np $(./ghw semver_inc product)",
"release:feature": "np $(./ghw semver_inc feature)",
"release:hotfix": "np $(./ghw semver_inc hotfix)",
"release": "np",
"test": "jest && bash test",
"test:dev": "jest --watch --onlyFailures",
"postrelease": "npm update && npm update -D"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/askirmas/git-hooks-wrapper.git"
},
"author": {
"email": "kirmas@phystech.edu",
"name": "Andrii Kirmas",
"url": "https://about.me/kirmas"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/askirmas/git-hooks-wrapper/issues"
},
"homepage": "https://github.com/askirmas/git-hooks-wrapper#readme",
"publishConfig": {
"access": "public"
},
"keywords": [
"git-hooks",
"pre-commit",
"bash-script",
"platform-independent",
"os-independent",
"language-independent",
"testing"
],
"files": [
"ghw",
"hooks",
"commands",
"utils",
"hooks_common",
"hooks_dir"
]
}