-
-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
67 lines (67 loc) · 2.01 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
{
"name": "pi-gen-action",
"version": "1.10.0",
"description": "GitHub action to build a custom Raspberry Pi image using pi-gen",
"author": "Simon Domke",
"main": "dist/index.js",
"scripts": {
"lint": "eslint src/**/*.ts",
"package": "ncc build src/main.ts -m --no-source-map-register --license licenses.txt",
"test": "jest",
"all": "npm run format && npm run lint && npm test && npm run package && npm run update-readme",
"format": "prettier --write '**/*.ts'",
"format-check": "prettier --check '**/*.ts'",
"update-readme": "ts-node src/misc/update-readme.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/usimd/pi-gen-action.git"
},
"bugs": {
"url": "https://github.com/usimd/pi-gen-action/issues"
},
"homepage": "https://github.com/usimd/pi-gen-action#readme",
"keywords": [
"actions",
"raspberry",
"pi-gen"
],
"license": "MIT",
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/exec": "1.1.1",
"@actions/github": "^6.0.0",
"@actions/glob": "^0.5.0",
"@actions/io": "^1.1.3",
"ansi-colors": "^4.1.3",
"json-colorizer": "^3.0.1",
"tmp": "0.2.3"
},
"devDependencies": {
"@types/jest": "29.5.14",
"@types/js-yaml": "4.0.9",
"@types/node": "20.17.5",
"@types/semver": "7.5.8",
"@types/tmp": "0.2.6",
"@typescript-eslint/eslint-plugin": "7.18.0",
"@typescript-eslint/parser": "7.18.0",
"@vercel/ncc": "0.38.2",
"eslint": "8.57.1",
"eslint-import-resolver-typescript": "3.6.3",
"eslint-plugin-github": "github:github/eslint-plugin-github#main",
"eslint-plugin-jest": "28.8.3",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-workspaces": "0.10.1",
"jest": "29.7.0",
"jest-mock-extended": "3.0.7",
"js-yaml": "4.1.0",
"markdown-replace-section": "0.4.0",
"prettier": "3.3.3",
"semver": "7.6.3",
"ts-jest": "29.2.5",
"ts-node": "10.9.2",
"typescript": "5.6.3",
"typescript-eslint": "^7.0.2",
"word-wrap": "1.2.5"
}
}