-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
78 lines (78 loc) · 2.4 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
73
74
75
76
77
78
{
"name": "deploy-to-balena-action",
"version": "2.0.85",
"description": "Github action to build releases for a fleet",
"homepage": "https://github.com/balena-io/deploy-to-balena-action",
"private": true,
"main": "build/src/main.js",
"types": "build/main.d.ts",
"keywords": [
"balena",
"typescript"
],
"engines": {
"npm": ">=9.0.0",
"node": ">=18.0.0"
},
"author": "",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/balena-io/deploy-to-balena-action.git"
},
"bugs": {
"url": "https://github.com/balena-io/deploy-to-balena-action/issues"
},
"files": [
"build/"
],
"scripts": {
"clean": "rimraf build",
"action": "npm run build && node -r dotenv/config build/src/main.js",
"action:open-pr": "npm run action dotenv_config_path=events/open-pr/.env",
"action:sync-pr": "npm run action dotenv_config_path=events/sync-pr/.env",
"action:close-pr": "npm run action dotenv_config_path=events/close-pr/.env",
"action:push": "npm run action dotenv_config_path=events/push/.env",
"build": "npm run clean && tsc",
"lint": "balena-lint src tests",
"lint-fix": "balena-lint --fix src tests",
"test:fast": "TEST=1 mocha --config tests/.mocharc.fast.js",
"prepack": "npm run build",
"test": "npm run clean && npm run lint && npm run test:build && TEST=1 mocha --config tests/.mocharc.js",
"test:build": "tsc --project tsconfig.json && npm run testitems:copy",
"testitems:copy": "cp -r tests/data build/tests/"
},
"devDependencies": {
"@balena/lint": "^8.0.1",
"@types/chai": "^4.3.14",
"@types/chai-as-promised": "^7.1.8",
"@types/chai-like": "^1.1.3",
"@types/chai-things": "0.0.38",
"@types/mocha": "^10.0.6",
"@types/rewire": "^2.5.30",
"@types/sinon": "^17.0.3",
"@types/sinon-chai": "^3.2.12",
"chai": "^4.4.1",
"chai-as-promised": "^7.1.1",
"chai-like": "^1.1.1",
"chai-things": "^0.2.0",
"dotenv": "^16.4.5",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"mocha": "^10.4.0",
"rewire": "^7.0.0",
"rimraf": "^6.0.0",
"sinon": "^19.0.0",
"sinon-chai": "^3.7.0",
"typescript": "^5.4.5"
},
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/exec": "^1.1.1",
"@actions/github": "^6.0.0",
"balena-sdk": "^20.0.0"
},
"versionist": {
"publishedAt": "2022-10-06T22:08:44.879Z"
}
}