-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 2.24 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
{
"name": "gha-build-monitor",
"version": "0.13.0",
"buildInfo": {
"commitSha": "_CI_GIT_COMMIT_SHA",
"buildDate": "_CI_BUILD_DATE",
"gitRef": "_CI_GIT_REF"
},
"description": "Adapter to give access to GitHub Actions status via the CatLight Protocol",
"scripts": {
"build": "rimraf ./dist && npm run tsoa:gen && tsc",
"check": "npm run tsoa:gen && npm run ts:check && npm run lint",
"lint": "eslint . --ext .ts",
"prettier-format": "prettier --config .prettierrc 'src/**/*.ts' --write",
"start": "HTTP_PORT=9900 node dist/index.js",
"start:dev": "HTTP_PORT=9900 concurrently \"nodemon\" \"nodemon -x tsoa spec-and-routes\"",
"test": "jest --testTimeout=15000",
"test:no-secrets": "jest --testTimeout=15000 -t='^((?!(#needs-secrets)).)*$' --silent",
"test:need-secrets": "jest --testTimeout=15000 -t=#needs-secrets --silent",
"ts:check": "tsc --noEmit --noErrorTruncation ",
"tsoa:gen": "tsoa spec-and-routes"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tsimbalar/gha-build-monitor.git"
},
"keywords": [
"catlight",
"github-actions"
],
"author": "tsimbalar",
"license": "MIT",
"bugs": {
"url": "https://github.com/tsimbalar/gha-build-monitor/issues"
},
"homepage": "https://github.com/tsimbalar/gha-build-monitor#readme",
"devDependencies": {
"@tsoa/cli": "4.1.3",
"@types/express": "4.17.14",
"@types/jest": "28.1.6",
"@types/lru-cache": "5.1.1",
"@types/node": "16.18.8",
"@types/supertest": "2.0.12",
"@types/swagger-ui-express": "4.1.3",
"@typescript-eslint/eslint-plugin": "5.45.0",
"@typescript-eslint/parser": "5.45.0",
"concurrently": "7.6.0",
"eslint": "8.29.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-prettier": "4.2.1",
"jest": "28.1.3",
"mockdate": "3.0.5",
"nodemon": "2.0.20",
"prettier": "2.8.1",
"rimraf": "3.0.2",
"supertest": "6.3.1",
"ts-jest": "28.0.8",
"ts-node": "10.9.1",
"typescript": "4.8.4"
},
"dependencies": {
"@octokit/plugin-throttling": "4.3.2",
"@octokit/rest": "19.0.5",
"@tsoa/runtime": "4.1.3",
"date-fns": "2.29.3",
"express": "4.18.2",
"lru-cache": "6.0.0",
"swagger-ui-express": "4.6.0"
}
}