-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
46 lines (46 loc) · 1.03 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
{
"name": "arduino-lint-action",
"private": true,
"description": "Check Arduino projects for problems",
"main": "lib/main.js",
"scripts": {
"build": "tsc",
"format": "prettier --write **/*.ts",
"format-check": "prettier --check **/*.ts",
"pack": "ncc build",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/arduino/arduino-lint-action.git"
},
"keywords": [
"actions",
"arduino",
"lint"
],
"author": "Arduino",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.11.1",
"@actions/http-client": "^2.2.3",
"@actions/tool-cache": "^2.0.1",
"semver": "^7.6.3"
},
"devDependencies": {
"@actions/io": "^1.1.3",
"@types/jest": "^28.1.8",
"@types/node": "^20.16.10",
"@types/semver": "^7.5.8",
"@vercel/ncc": "^0.38.2",
"jest": "^28.1.3",
"jest-circus": "^29.7.0",
"nock": "^13.5.5",
"prettier": "^3.3.3",
"ts-jest": "^28.0.8",
"typescript": "^5.6.2"
},
"engines": {
"node": "20.x"
}
}