-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 935 Bytes
/
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
{
"name": "@uihc/hc",
"version": "0.2.1",
"description": "A command line tool for version control consistency.",
"main": "lib/index.ts",
"files": [
"/dist"
],
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc"
},
"bin": {
"hc": "dist/index.js"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/UniversityOfIowaHealthCare/hc.git"
},
"keywords": [
"cli",
"command line",
"version control",
"git",
"git tag"
],
"author": "SamUndefined <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/UniversityOfIowaHealthCare/hc/issues"
},
"homepage": "https://github.com/UniversityOfIowaHealthCare/hc#readme",
"dependencies": {
"@types/nodegit": "^0.22.7",
"nodegit": "^0.23.0",
"yargs": "^12.0.5"
},
"devDependencies": {
"@types/node": "^10.12.18",
"@types/yargs": "^12.0.5"
}
}