This repository was archived by the owner on Jan 5, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 53
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.42 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.42 KB
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
62
63
64
{
"name": "setup-haskell",
"version": "1.1.5",
"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"
},
"repository": {
"type": "git",
"url": "git+https://github.com/actions/setup-haskell.git"
},
"keywords": [
"actions",
"haskell",
"ghc",
"cabal",
"setup"
],
"author": "GitHub",
"license": "MIT",
"directories": {
"lib": "lib",
"test": "__tests__"
},
"files": [
"lib"
],
"dependencies": {
"@actions/core": "^1.2.6",
"@actions/exec": "^1.0.4",
"@actions/glob": "^0.1.1",
"@actions/io": "^1.0.2",
"@actions/tool-cache": "^1.6.1",
"js-yaml": "^3.14.1"
},
"devDependencies": {
"@types/jest": "^26.0.19",
"@types/js-yaml": "^3.12.5",
"@types/node": "^14.14.13",
"@typescript-eslint/eslint-plugin": "^4.9.1",
"@typescript-eslint/parser": "^4.9.1",
"@zeit/ncc": "^0.22.3",
"eslint": "^7.15.0",
"eslint-plugin-github": "^4.1.1",
"eslint-plugin-jest": "^24.1.3",
"husky": "^4.3.5",
"jest": "^26.6.3",
"jest-circus": "^26.6.3",
"lint-staged": "^10.5.3",
"prettier": "^2.2.1",
"ts-jest": "^26.4.4",
"typescript": "^4.1.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "npm test"
}
}
}