-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
72 lines (72 loc) · 1.7 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "aws-issue-triage-manager",
"version": "1.0.0",
"description": "Github Action built for automatically adding labels and assignees to issues and PRs",
"main": "dist/index.js",
"scripts": {
"build": "ncc build src/index.ts -o dist --license LICENSE.md",
"test": "jest",
"lint": "gts lint",
"clean": "gts clean",
"compile": "tsc",
"fix": "gts fix",
"posttest": "npm run lint"
},
"jest": {
"displayName": "Unit Tests",
"preset": "ts-jest",
"testEnvironment": "node",
"collectCoverage": true,
"collectCoverageFrom": [
"src/**/*.ts",
"!src/**/*.test.ts",
"!**/node_modules/**"
],
"coverageThreshold": {
"global": {
"branches": 50,
"functions": 90,
"lines": 80,
"statements": 70
}
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/aws-github-ops/aws-issue-triage-manager.git"
},
"author": {
"name": "Amazon Web Services",
"url": "https://aws.amazon.com"
},
"contributors": [
{
"name": "Peter Woodworth",
"url": "https://github.com/peterwoodworth"
},
{
"name": "Noah Litov",
"url": "https://github.com/NGL321"
},
{
"name": "Jesse Katsumata",
"email": "[email protected]",
"url": "https://github.com/Naturalclar"
}
],
"license": "Apache-2.0",
"dependencies": {
"@actions/core": "^1.9.1",
"@actions/github": "^5.0.0",
"js-levenshtein": "^1.1.6"
},
"devDependencies": {
"@types/jest": "^27.0.3",
"@vercel/ncc": "^0.31.1",
"jest": "^27.4.3",
"ts-jest": "^27.0.7",
"typescript": "^4.4.4",
"gts": "^3.1.1",
"@types/node": "^14.11.2"
}
}