-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.79 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "action",
"description": "GitHub Action for Depressed DST Modders.",
"version": "1.0.0-alpha",
"author": {
"name": "Depressed DST Modders",
"email": "[email protected]"
},
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/exec": "^1.1.1",
"@actions/github": "^5.1.1",
"@slack/bolt": "^3.12.2",
"diff": "^5.1.0",
"glob": "^8.1.0",
"ignore": "^5.2.4",
"sprintf-js": "^1.1.2"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@typescript-eslint/eslint-plugin": "^5.49.0",
"@typescript-eslint/parser": "^5.49.0",
"eslint": "^8.32.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.7.0",
"prettier": "^2.8.3",
"ts-jest": "^29.2.1",
"typescript": "^5.5.3",
"yarn-audit-fix": "^10.0.7",
"yarn-deduplicate": "^6.0.2"
},
"homepage": "https://github.com/dstmodders/action#readme",
"keywords": [
"github-action",
"klei-tools",
"ktools",
"luacheck",
"prettier"
],
"license": "MIT",
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "github:dstmodders/action"
},
"scripts": {
"audit:fix": "yarn-audit-fix",
"build": "tsc",
"ci:eslint": "eslint --ext='js,ts' --format='./.github/eslint-output.js' .",
"ci:jest": "jest --ci --coverage=false --reporters='./.github/jest-output.js' --silent",
"ci:prettier": "node ./.github/prettier-output.js",
"clean": "rm -rf ./coverage/ ./lib/ && find ./src -name '*.js' -type f -delete",
"deduplicate": "yarn-deduplicate && yarn install --ignore-scripts",
"lint": "eslint --ext ts .; prettier --check .",
"prepare": "npm run build",
"test": "jest --coverage"
}
}