forked from JohnnyMorganz/stylua-action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 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
42
43
44
{
"name": "stylua-action",
"version": "0.0.0",
"private": true,
"description": "GitHub action to run StyLua",
"main": "lib/main.js",
"scripts": {
"build": "tsc",
"format": "prettier --write **/*.ts",
"format-check": "prettier --check **/*.ts",
"lint": "eslint src/**/*.ts",
"package": "ncc build --source-map --license licenses.txt",
"test": "jest",
"all": "npm run build && npm run format-check && npm run lint && npm run package"
},
"repository": {
"type": "git",
"url": "git+https://github.com/JohnnyMorganz/stylua-action.git"
},
"keywords": [
"actions",
"formatter",
"lua"
],
"author": "JohnnyMorganz",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.2.7",
"@actions/exec": "^1.0.4",
"@actions/github": "^4.0.0",
"@actions/tool-cache": "^1.6.1",
"@types/node": "^17.0.8",
"semver": "^7.3.5"
},
"devDependencies": {
"@types/semver": "^7.3.5",
"@typescript-eslint/parser": "^4.23.0",
"@vercel/ncc": "^0.28.5",
"eslint": "^7.26.0",
"eslint-plugin-github": "^4.1.3",
"prettier": "^2.3.0",
"typescript": "^4.2.4"
}
}