-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.49 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
{
"name": "github-project-column-issue-labeler",
"version": "1.0.0",
"description": "Manages labels for issues based on what column they're in in a kanban style github version 2 project",
"main": "labeler.js",
"scripts": {
"build": "npx tsc",
"build:dev": "npx tsc --watch",
"lint": "npx ts-standard",
"start": "npx ts-node ./index.ts",
"test": "npx jest --silent",
"test:validation-indentation": "npx ts-node tests/validateConfigIndentationManualVerification.ts",
"test:verbose": "npx jest",
"sample-requests": "npx ts-node tests/fetchSampleRequestResponses.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/FireLemons/github-project-column-issue-labeler.git"
},
"keywords": [
"github",
"project",
"issue",
"github-actions",
"label",
"labels"
],
"author": "[email protected]",
"license": "MIT",
"bugs": {
"url": "https://github.com/FireLemons/github-project-column-issue-labeler/issues"
},
"homepage": "https://github.com/FireLemons/github-project-column-issue-labeler#readme",
"devDependencies": {
"@tsconfig/node-lts": "^20.1.0",
"@types/cli-color": "^2.0.6",
"@types/jest": "^29.5.12",
"@types/node": "^20.10.4",
"jest": "^29.7.0",
"ts-jest": "^29.1.2",
"ts-standard": "^12.0.2",
"typescript": "^5.3.3"
},
"dependencies": {
"cli-color": "^2.0.3",
"octokit": "^3.1.2"
},
"ts-standard": {
"ignore": [
"**/*.js",
"**/*.json"
]
}
}