forked from iCrawl/action-tsc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 871 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
{
"name": "typescript-action",
"version": "2.0.0",
"description": "Typescript compiler action",
"main": "dist/index.js",
"author": "iCrawl <[email protected]>",
"license": "MIT",
"private": true,
"scripts": {
"prebuild": "npm run lint",
"build": "ncc build src/main.ts --minify",
"lint": "eslint src --ext .ts",
"lint:fix": "eslint src --ext .ts --fix"
},
"dependencies": {
"@actions/core": "^1.2.6",
"@actions/exec": "^1.0.4"
},
"devDependencies": {
"@types/node": "^14.14.11",
"@typescript-eslint/eslint-plugin": "^4.0.0",
"@typescript-eslint/parser": "^3.10.1",
"@zeit/ncc": "^0.22.3",
"eslint": "^7.15.0",
"eslint-config-marine": "^7.2.0",
"eslint-config-prettier": "^7.0.0",
"eslint-plugin-prettier": "^3.2.0",
"prettier": "^2.2.1",
"typescript": "4.1.5"
},
"eslintConfig": {
"extends": "marine/prettier/node"
}
}