forked from actions/setup-haskell
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
56 lines (56 loc) · 1.28 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
{
"name": "setup-haskell",
"version": "1.0.0",
"private": true,
"description": "setup haskell action",
"main": "src/setup-haskell.ts",
"scripts": {
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/actions/setup-haskell.git"
},
"keywords": [
"actions",
"haskell",
"ghc",
"cabal",
"setup"
],
"author": "GitHub",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.2.5",
"@actions/exec": "^1.0.4",
"@actions/glob": "^0.1.0",
"@actions/io": "^1.0.2",
"@actions/tool-cache": "^1.6.0",
"js-yaml": "^3.14.0"
},
"devDependencies": {
"@types/jest": "^26.0.14",
"@types/js-yaml": "^3.12.5",
"@types/node": "^14.10.3",
"@typescript-eslint/parser": "^4.1.1",
"@typescript-eslint/eslint-plugin": "^4.1.1",
"@zeit/ncc": "^0.22.3",
"eslint": "^7.9.0",
"eslint-plugin-github": "^4.1.1",
"eslint-plugin-jest": "^24.0.1",
"husky": "^4.3.0",
"jest": "^26.4.2",
"jest-circus": "^26.4.2",
"lint-staged": "^10.4.0",
"prettier": "^2.1.2",
"ts-jest": "^26.3.0",
"typescript": "^4.0.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"post-commit": "git update-index --again",
"pre-push": "npm test"
}
}
}