-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
51 lines (51 loc) · 1.11 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
{
"name": "ghouls",
"version": "0.0.0-development",
"main": "index.js",
"license": "MIT",
"engines": {
"node": ">=9.8.0"
},
"scripts": {
"compile": "tsc",
"prepublishOnly": "yarn run compile",
"semantic-release": "semantic-release"
},
"bin": {
"ghouls": "./bin/ghouls"
},
"files": [
"bin",
"yarn.lock",
"lib"
],
"dependencies": {
"@octokit/rest": "^15.2.5",
"convict": "^4.1.0",
"progress": "^2.0.0",
"source-map-support": "^0.5.4",
"untildify": "^3.0.2",
"yargs": "^11.0.0"
},
"devDependencies": {
"@types/convict": "^4.1.1",
"@types/node": "^9.4.7",
"@types/progress": "^2.0.1",
"@types/source-map-support": "^0.4.0",
"@types/untildify": "^3.0.0",
"@types/yargs": "^11.0.0",
"prettier": "^1.11.1",
"semantic-release-cli": "^3.6.4",
"ts-node": "^5.0.1",
"typescript": "^2.7.2",
"semantic-release": "^15.1.3"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"tag": "next"
},
"repository": {
"type": "git",
"url": "https://github.com/ericanderson/ghouls.git"
}
}