forked from arduino/setup-arduino-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1022 Bytes
/
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
{
"name": "setup-task-arduino-cli",
"version": "1.1.1",
"private": true,
"description": "Setup Arduino CLI",
"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/actions.git"
},
"keywords": [
"actions",
"arduino",
"cli",
"setup"
],
"author": "Arduino",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.2.6",
"@actions/http-client": "^1.0.9",
"@actions/tool-cache": "^1.6.1",
"semver": "^6.1.1"
},
"devDependencies": {
"@actions/io": "^1.0.2",
"@types/jest": "^24.0.13",
"@types/node": "^12.19.8",
"@types/semver": "^6.2.2",
"@vercel/ncc": "^0.25.1",
"jest": "^26.6.3",
"jest-circus": "^24.7.1",
"nock": "^10.0.6",
"prettier": "^1.17.1",
"ts-jest": "^26.4.4",
"typescript": "^3.9.7"
}
}