generated from sudosubin/typescript-action-template
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
46 lines (46 loc) · 1.24 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": "setup-lokalise-action",
"version": "1.0.1",
"private": true,
"description": "A setup action for lokalise cli v2.",
"main": "dist/index.js",
"scripts": {
"build": "esbuild src/main.ts --bundle --minify --platform=node --outfile=dist/index.js",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx && prettier --check \"**/*.{js,jsx,ts,tsx}\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/sudosubin/setup-lokalise-action.git"
},
"author": "sudosubin <[email protected]>",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.2.6",
"@actions/tool-cache": "^1.6.1"
},
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "^1.4.2",
"@types/node": "^14.14.27",
"@typescript-eslint/eslint-plugin": "^4.15.0",
"@typescript-eslint/parser": "^4.15.0",
"esbuild": "^0.8.46",
"eslint": "^7.20.0",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-prettier": "^3.3.1",
"husky": "^4.3.8",
"lint-staged": "^10.5.4",
"prettier": "^2.2.1",
"typescript": "^4.1.5"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"**/*.{js,jsx,ts,tsx}": [
"eslint --fix",
"prettier --write"
]
}
}