-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 777 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 777 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
32
33
34
{
"name": "sh-semversion-2",
"version": "1.0.5",
"description": "POSIX tool for semversion",
"bin": "semver2.sh",
"dependencies": {},
"devDependencies": {
"husky": "^4.3.0",
"shellcheck": "^0.4.4"
},
"scripts": {
"test": "./test.sh semver2.sh",
"lint": "shellcheck semver2.sh"
},
"husky": {
"hooks": {
"pre-push": "npm test",
"pre-commit": "npm run lint"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/Ariel-Rodriguez/sh-semversion-2.git"
},
"keywords": [
"sh"
],
"author": "Ariel Rodriguez",
"license": "MIT",
"bugs": {
"url": "https://github.com/Ariel-Rodriguez/sh-semversion-2/issues"
},
"homepage": "https://github.com/Ariel-Rodriguez/sh-semversion-2#readme"
}