forked from elm/compiler
-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.62 KB
/
Copy pathpackage.json
File metadata and controls
57 lines (57 loc) · 1.62 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
52
53
54
55
56
57
{
"name": "guida",
"version": "1.0.0-beta.2",
"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/index.js",
"files": [
"bin/guida.min.js",
"lib/guida.min.js",
"lib/index.d.ts",
"libraries/test"
],
"bin": {
"guida": "bin/index.js"
},
"scripts": {
"build": "npm-run-all --sequential build:*",
"build:api": "./scripts/build.sh api",
"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.17",
"form-data": "^4.0.5",
"jszip": "^3.10.1",
"mock-xmlhttprequest": "^8.4.1",
"os-lock": "^2.0.0",
"tmp": "^0.2.7",
"which": "^7.0.0"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@playwright/test": "^1.60.0",
"@types/node": "^25.9.1",
"elm": "^0.19.1-6",
"elm-format": "^0.8.8",
"elm-review": "^2.13.5",
"elm-test": "^0.19.1-revision17",
"eslint": "^10.4.1",
"eslint-plugin-jest": "^29.15.2",
"globals": "^17.6.0",
"guida": "^1.0.0-beta.2",
"jest": "^30.4.2",
"npm-run-all": "^4.1.5",
"onchange": "^7.1.0",
"uglify-js": "^3.19.3"
}
}