-
-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
58 lines (58 loc) · 1.34 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
58
{
"name": "@azu/github-label-setup",
"version": "5.1.0",
"description": "GitHub label setup script.",
"type": "module",
"keywords": [
"github",
"label"
],
"homepage": "https://github.com/azu/github-label-setup",
"bugs": {
"url": "https://github.com/azu/github-label-setup/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/azu/github-label-setup.git"
},
"license": "MIT",
"author": "azu",
"main": "lib/github-label-setup.js",
"types": "lib/github-label-setup.d.ts",
"bin": {
"github-label-setup": "./bin/cmd.mjs"
},
"directories": {
"test": "test"
},
"files": [
"bin/",
"lib/",
"src/",
"labels.json",
".github/release.yml"
],
"scripts": {
"build": "tsc -p .",
"prepublishOnly": "npm run build",
"prepublish": "npm run --if-present build",
"watch": "tsc -p . --watch"
},
"dependencies": {
"git-remote-origin-url": "^4.0.0",
"github-label-sync": "^2.2.0",
"hosted-git-info": "^6.1.1",
"meow": "^11.0.0",
"try-resolve": "^1.0.1"
},
"devDependencies": {
"@types/github-label-sync": "^2.0.2",
"@types/hosted-git-info": "^3.0.2",
"@types/mocha": "^10.0.1",
"@types/node": "^18.11.18",
"mocha": "^10.2.0",
"ts-node": "^10.9.1",
"ts-node-test-register": "^10.0.0",
"typescript": "^4.9.4"
}
}