forked from elm/compiler
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
36 lines (36 loc) · 1.01 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
{
"name": "guida",
"version": "0.1.0",
"description": "Guida is a functional programming language that builds upon the solid foundation of Elm, offering backward compatibility with all existing Elm 0.19.1 projects",
"author": "Decio Ferreira",
"license": "BSD-3-Clause",
"main": "./lib/guida.js",
"bin": {
"guida": "bin/index.js"
},
"scripts": {
"build": "./lib/guida.sh src/Terminal/Main.elm",
"test": "npm-run-all --parallel test:*",
"test:jest": "jest",
"test:elm": "elm-test",
"test:elm-review": "elm-review",
"test:elm-format-validate": "elm-format . --validate",
"elm-format": "elm-format . --yes"
},
"dependencies": {
"adm-zip": "^0.5.16",
"form-data": "^4.0.1",
"tmp": "^0.2.3",
"which": "^5.0.0"
},
"devDependencies": {
"elm": "^0.19.1-6",
"elm-format": "^0.8.7",
"elm-review": "^2.13.1",
"elm-test": "^0.19.1-revision12",
"guida": "^0.3.0-alpha",
"jest": "^29.7.0",
"npm-run-all": "^4.1.5",
"uglify-js": "^3.19.3"
}
}