-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
43 lines (43 loc) · 1.16 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
{
"name": "deployable",
"version": "0.0.3",
"private": true,
"description": "Approve deployments via comments from maintainers",
"author": "Balena",
"license": "Apache-2.0",
"homepage": "https://github.com/balena-io-experimental/deployable",
"keywords": [
"probot",
"github",
"probot-app"
],
"scripts": {
"build": "tsc",
"start": "probot run ./lib/src/index.js",
"test": "npm run lint && vitest --coverage",
"lint": "balena-lint src/ test/ && tsc --noEmit --project .",
"lint-fix": "balena-lint --fix src/ test/",
"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",
"smee-client": "^2.0.0",
"vitest": "^2.1.5"
},
"engines": {
"node": ">= 18"
},
"type": "module",
"versionist": {
"publishedAt": "2024-11-28T18:23:50.885Z"
}
}