-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
35 lines (35 loc) · 937 Bytes
/
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
{
"name": "run-fourmolu",
"description": "Check formatting of Haskell code with Fourmolu.",
"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-fourmolu.git"
},
"keywords": [
"foramtter",
"haskell"
],
"author": "original: Mark Karpov, fourmolu port: Bitnomial",
"license": "BSD 3 clause",
"dependencies": {
"@actions/core": "^1.2.6",
"@actions/exec": "^1.1.1",
"@actions/github": "^6.0.0",
"@actions/glob": "^0.4.0",
"@actions/http-client": "^2.2.0",
"@actions/tool-cache": "^2.0.1",
"@vercel/ncc": "^0.38.1"
},
"devDependencies": {
"@vercel/ncc": "^0.38.1"
},
"bugs": {
"url": "https://github.com/haskell-actions/run-fourmolu/issues"
},
"homepage": "https://github.com/haskell-actions/run-fourmolu#readme"
}