forked from haskell-actions/setup
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.45 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": "setup-haskell",
"version": "2.3.6",
"private": true,
"description": "setup haskell action",
"main": "lib/setup-haskell",
"types": "lib/setup-haskell",
"scripts": {
"bundle": "ncc build src/main.ts && tsc -p tsconfig-lib.json",
"test": "jest",
"prepare": "husky install ./.husky/",
"yolo-upgrade": "npx npm-check-updates -u && npm install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/haskell-actions/setup.git"
},
"keywords": [
"actions",
"haskell",
"ghc",
"cabal",
"setup"
],
"author": "jared-w",
"license": "MIT",
"directories": {
"lib": "lib",
"test": "__tests__"
},
"files": [
"lib"
],
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/exec": "^1.1.1",
"@actions/glob": "^0.4.0",
"@actions/io": "^1.1.3",
"@actions/tool-cache": "^2.0.1",
"compare-versions": "^6.1.0",
"ensure-error": "^4.0.0",
"js-yaml": "^4.1.0"
},
"devDependencies": {
"@types/jest": "^29.5.4",
"@types/js-yaml": "^4.0.5",
"@types/node": "^20.6.0",
"@typescript-eslint/eslint-plugin": "^6.6.0",
"@typescript-eslint/parser": "^6.6.0",
"@vercel/ncc": "^0.38.0",
"eslint": "^8.49.0",
"eslint-plugin-github": "^4.10.0",
"eslint-plugin-jest": "^27.2.3",
"husky": "^8.0.3",
"jest": "^29.6.4",
"lint-staged": "^14.0.1",
"prettier": "^3.0.3",
"ts-jest": "^29.1.1",
"typescript": "^5.2.2"
}
}