forked from coursier/cache-action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.13 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
{
"name": "typescript-action",
"version": "0.0.0",
"private": true,
"description": "TypeScript template action",
"main": "lib/main.js",
"scripts": {
"build": "ncc build src/restore.ts --source-map --minify --out dist/restore && ncc build src/save.ts --source-map --minify --out dist/save",
"format": "prettier --write **/*.ts",
"format-check": "prettier --check **/*.ts",
"lint": "eslint src/**/*.ts",
"test": "echo 'No test framework configured'",
"all": "npm run build && npm run format && npm run lint && npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/actions/typescript-action.git"
},
"keywords": [
"actions",
"node",
"setup"
],
"author": "",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/cache": "^3.1.2",
"hash-files": "^1.1.1"
},
"devDependencies": {
"@typescript-eslint/parser": "^5.48.0",
"@types/node": "^18.11.18",
"@zeit/ncc": "^0.22.3",
"eslint": "^8.31.0",
"eslint-plugin-github": "^4.6.0",
"js-yaml": "^4.1.0",
"prettier": "2.8.2",
"typescript": "^4.9.4"
}
}