-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
29 lines (29 loc) · 845 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
{
"name": "prepare-local-actions",
"version": "1.0.0",
"private": true,
"description": "Prepare local actions by installing dependencies and building the actions.",
"author": "Johannes Spangenberg",
"license": "MIT",
"homepage": "https://github.com/JojOatXGME/prepare-local-actions#readme",
"scripts": {
"build": "ncc build src/index.ts -o dist",
"format": "prettier --write src/**/*.ts",
"format-check": "prettier --check src/**/*.ts",
"test": "jest --passWithNoTests"
},
"dependencies": {
"@actions/cache": "^1.0.5",
"@actions/core": "^1.2.6",
"@actions/exec": "^1.0.4",
"@actions/io": "^1.0.2"
},
"devDependencies": {
"@types/node": "^12.19.12",
"@zeit/ncc": "^0.22.3",
"jest": "^26.6.3",
"prettier": "^2.2.1",
"ts-jest": "^26.4.4",
"typescript": "^3.9.7"
}
}