-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
47 lines (47 loc) · 1.42 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
{
"name": "deploynaut",
"version": "0.0.19",
"private": true,
"description": "Approve deployments via reviews from maintainers",
"author": "Balena",
"license": "Apache-2.0",
"homepage": "https://github.com/product-os/deploynaut",
"keywords": [
"probot",
"github",
"probot-app"
],
"scripts": {
"clean": "rimraf lib",
"build": "tsc --project tsconfig.release.json",
"start": "probot run ./lib/index.js",
"test": "npm run lint && vitest --coverage",
"lint": "balena-lint src tests && tsc --noEmit --project .",
"lint-fix": "balena-lint --fix src tests",
"test:compose": "docker compose -f tests/compose/docker-compose.yml up sut --build",
"clean:compose": "docker compose -f tests/compose/docker-compose.yml down --volumes --remove-orphans",
"prepare": "node -e \"try { (await import('husky')).default() } catch (e) { if (e.code !== 'ERR_MODULE_NOT_FOUND') throw e }\" --input-type module"
},
"dependencies": {
"probot": "^13.0.1",
"typescript": "^5.6.3"
},
"devDependencies": {
"@balena/lint": "^9.1.2",
"@types/node": "^20.0.0",
"@vitest/coverage-v8": "^2.1.5",
"husky": "^9.1.7",
"lint-staged": "^15.2.10",
"nock": "^14.0.0-beta.5",
"rimraf": "^6.0.1",
"smee-client": "^2.0.0",
"vitest": "^2.1.5"
},
"engines": {
"node": ">= 18"
},
"type": "module",
"versionist": {
"publishedAt": "2025-01-13T00:09:31.252Z"
}
}