-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.38 KB
/
Copy pathpackage.json
File metadata and controls
78 lines (78 loc) · 2.38 KB
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.3.1",
"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.20",
"@types/chai-as-promised": "7.1.8",
"@types/chai-like": "1.1.3",
"@types/chai-things": "0.0.38",
"@types/mocha": "10.0.10",
"@types/rewire": "2.5.30",
"@types/sinon": "21.0.1",
"@types/sinon-chai": "3.2.12",
"chai": "4.5.0",
"chai-as-promised": "7.1.2",
"chai-like": "1.1.3",
"chai-things": "0.2.0",
"dotenv": "17.4.2",
"husky": "9.1.7",
"lint-staged": "17.0.7",
"mocha": "11.7.6",
"rewire": "9.0.1",
"rimraf": "6.1.3",
"sinon": "22.0.0",
"sinon-chai": "3.7.0",
"typescript": "6.0.3"
},
"dependencies": {
"@actions/core": "^2.0.0",
"@actions/exec": "^2.0.0",
"@actions/github": "^8.0.0",
"balena-sdk": "^23.0.0"
},
"versionist": {
"publishedAt": "2022-10-06T22:08:44.879Z"
}
}