-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
35 lines (35 loc) · 1.09 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
{
"name": "elm-open-api",
"version": "0.7.0",
"description": "A tool for generating Elm SDKs from OpenAPI Specs.",
"main": "dist/elm-open-api.js",
"bin": "dist/elm-open-api.js",
"type": "module",
"scripts": {
"dev": "elm-pages run src/Cli.elm",
"build": "elm-pages bundle-script src/Cli.elm --output dist/elm-open-api.js --debug",
"review": "elm-review",
"review:watch": "elm-review --watch --fix",
"format": "elm-format src tests --validate",
"test": "elm-test",
"test:gen": "./gen-test.sh",
"test:watch": "elm-test --watch",
"pub": "npm run build && npm publish"
},
"author": "Wolfgang Schuster",
"license": "MIT",
"devDependencies": {
"@lydell/elm-json": "0.2.13-1",
"@redocly/cli": "1.11.0",
"elm": "0.19.1-6",
"elm-codegen": "0.5.3",
"elm-format": "0.8.7",
"elm-optimize-level-2": "0.3.5",
"elm-pages": "3.0.13",
"elm-review": "2.11.1",
"elm-test": "^0.19.1-revision12"
},
"volta": {
"node": "20.11.0"
}
}