-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 878 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 878 Bytes
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
{
"name": "ormolu-action",
"version": "1.0.0",
"description": "Check formatting of Haskell code with Ormolu.",
"main": "index.js",
"scripts": {
"prepare": "ncc build index.js -o dist",
"all": "npm run prepare"
},
"repository": {
"type": "git",
"url": "git+https://github.com/haskell-actions/run-ormolu.git"
},
"keywords": [
"foramtter",
"haskell"
],
"author": "Mark Karpov",
"license": "BSD 3 clause",
"dependencies": {
"@actions/core": "^1.2.6",
"@actions/exec": "^1.0.4",
"@actions/github": "^4.0.0",
"@actions/glob": "^0.1.0",
"@actions/tool-cache": "^1.6.0",
"@vercel/ncc": "^0.24.1"
},
"devDependencies": {
"@vercel/ncc": "^0.24.0"
},
"bugs": {
"url": "https://github.com/haskell-actions/run-ormolu/issues"
},
"homepage": "https://github.com/haskell-actions/run-ormolu#readme"
}