-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
72 lines (72 loc) · 2.29 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": "codemagic-build-monitor",
"version": "0.7.0",
"buildInfo": {
"commitSha": "_CI_GIT_COMMIT_SHA",
"buildDate": "_CI_BUILD_DATE",
"gitRef": "_CI_GIT_REF"
},
"description": "Adapter to give access to Codemagic build 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=9903 node dist/index.js",
"start:dev": "HTTP_PORT=9903 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/codemagic-build-monitor.git"
},
"keywords": [
"catlight",
"codemagic"
],
"author": "tsimbalar",
"license": "MIT",
"bugs": {
"url": "https://github.com/tsimbalar/codemagic-build-monitor/issues"
},
"homepage": "https://github.com/tsimbalar/codemagic-build-monitor#readme",
"devDependencies": {
"@tsoa/cli": "3.14.1",
"@types/express": "4.17.14",
"@types/jest": "26.0.24",
"@types/lru-cache": "5.1.1",
"@types/node": "16.9.1",
"@types/node-fetch": "2.5.12",
"@types/supertest": "2.0.11",
"@types/swagger-ui-express": "4.1.3",
"@typescript-eslint/eslint-plugin": "4.28.5",
"@typescript-eslint/parser": "4.28.5",
"concurrently": "6.2.0",
"eslint": "7.32.0",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-prettier": "3.4.0",
"jest": "26.6.3",
"mockdate": "3.0.5",
"nodemon": "2.0.12",
"prettier": "2.4.1",
"rimraf": "3.0.2",
"supertest": "6.1.4",
"ts-jest": "26.5.6",
"ts-node": "10.8.0",
"typescript": "4.3.5"
},
"dependencies": {
"@tsoa/runtime": "3.13.0",
"axios": "0.21.4",
"date-fns": "2.23.0",
"express": "4.18.2",
"lru-cache": "6.0.0",
"nock": "13.1.1",
"node-fetch": "2.6.1",
"swagger-ui-express": "4.1.6"
}
}