forked from guida-lang/compiler
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.53 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.53 KB
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
39
40
41
42
43
44
45
46
47
48
49
50
51
{
"name": "guida",
"version": "1.0.0-alpha",
"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/node.js",
"browser": "lib/browser.js",
"bin": {
"guida": "bin/index.js"
},
"scripts": {
"build": "npm-run-all --sequential build:*",
"build:node": "./scripts/build.sh node",
"build:browser": "./scripts/build.sh browser",
"build:bin": "./scripts/build.sh bin",
"watch": "onchange \"src/**/*.elm\" -- npm run build:bin",
"test": "npm-run-all --sequential test:*",
"test:eslint": "eslint",
"test:elm-format-validate": "elm-format . --validate",
"test:jest": "jest",
"test:elm": "elm-test",
"test:elm-review": "elm-review",
"elm-format": "elm-format . --yes",
"prepare": "npm run build"
},
"dependencies": {
"adm-zip": "^0.5.16",
"form-data": "^4.0.2",
"indexeddb-fs": "^2.1.5",
"jszip": "^3.10.1",
"mock-xmlhttprequest": "^8.4.1",
"tmp": "^0.2.3",
"which": "^5.0.0"
},
"devDependencies": {
"@eslint/js": "^9.23.0",
"elm": "^0.19.1-6",
"elm-format": "^0.8.7",
"elm-review": "^2.13.2",
"elm-test": "^0.19.1-revision15",
"eslint": "^9.23.0",
"eslint-plugin-jest": "^28.11.0",
"globals": "^16.0.0",
"guida": "^0.3.0-alpha",
"jest": "^29.7.0",
"npm-run-all": "^4.1.5",
"onchange": "^7.1.0",
"uglify-js": "^3.19.3"
}
}