forked from krdlab/setup-haxe
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
53 lines (53 loc) · 1.23 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
{
"name": "setup-haxe",
"version": "3.1.0",
"description": "setup haxe action",
"author": "Sho Kuroda <[email protected]>",
"license": "MIT",
"private": true,
"engines": {
"node": ">=16",
"npm": ">=9"
},
"main": "lib/main.js",
"scripts": {
"tsc": "tsc",
"build": "tsc",
"pack": "ncc build && ncc build -o dist/cache-save src/cache-save.ts",
"test": "xo",
"format": "xo --fix",
"dist": "npm run build && npm run pack",
"prepare": "husky install",
"unprepare": "git config --unset core.hooksPath"
},
"keywords": [
"actions",
"haxe",
"setup"
],
"dependencies": {
"@actions/cache": "^3.2.1",
"@actions/core": "^1.9.1",
"@actions/exec": "^1.0.3",
"@actions/glob": "^0.4.0",
"@actions/tool-cache": "^1.3.1",
"semver": "^7.5.2"
},
"devDependencies": {
"@types/node": "^16",
"@types/semver": "^7.1.0",
"@vercel/ncc": "^0.36.1",
"husky": "^8.0.3",
"typescript": "^4",
"xo": "^0.53.1"
},
"xo": {
"space": true,
"rules": {
"import/extensions": "off",
"@typescript-eslint/object-curly-spacing": "off",
"unicorn/no-array-method-this-argument": "off",
"unicorn/no-array-callback-reference": "off"
}
}
}