-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
38 lines (38 loc) · 1.04 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
{
"name": "stack-action",
"version": "0.0.0",
"description": "Build and test stack-based Haskell projects",
"main": "lib/main.js",
"scripts": {
"build": "tsc && ncc build lib/main.js && sed -i 's/\\x0D$//' ./dist/index.js",
"format": "prettier --write \"**/*.ts\"",
"format-check": "prettier --check \"**/*.ts\"",
"test": "jest",
"readme": "npx action-docs -u && prettier --write README.md"
},
"repository": {
"type": "git",
"url": "git+https://github.com/freckle/stack-action.git"
},
"author": "Freckle",
"license": "MIT",
"dependencies": {
"@actions/cache": "^4.0.0",
"@actions/core": "^1.11.1",
"@actions/exec": "^1.1.0",
"@actions/glob": "^0.5.0",
"js-yaml": "^4.1.0",
"shellwords-ts": "^3.0.1"
},
"devDependencies": {
"@types/jest": "^27.4.0",
"@types/js-yaml": "^4.0.5",
"@types/node": "^22.10.5",
"@vercel/ncc": "^0.38.3",
"action-docs": "^2.5.1",
"jest": "^27.4.7",
"prettier": "^3.4.2",
"ts-jest": "^27.1.3",
"typescript": "^5.7.2"
}
}