-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.08 KB
/
Copy pathpackage.json
File metadata and controls
39 lines (39 loc) · 1.08 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
{
"name": "decision-matrix",
"version": "0.1.0",
"keywords": [
"Decision Matrix",
"OCaml",
"BuckleScript",
"TEA"
],
"author": "John Suder",
"description": "A small on-line decision matrix application to assist in decision making and precise communication of relevant factors inside communities. Written in OCaml using the TEA architecture.",
"repository": {
"url": "https://github.com/JSuder-xx/decision-matrix"
},
"license": "MIT",
"scripts": {
"serve": "serve dist",
"clean": "bsb -clean-world",
"build:bsb": "bsb -make-world",
"build:js": "rollup -c",
"build": "run-s build:bsb build:js",
"watch:bsb": "bsb -make-world -w",
"watch:js": "rollup -c -w",
"watch": "run-p watch:bsb watch:js serve"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^6.1.0",
"bs-platform": "^7.3.2",
"bucklescript-tea": "^0.7.5",
"moduleserve": "^0.9.1",
"npm-run-all": "^4.1.5",
"rollup": "^1.27.14",
"rollup-plugin-terser": "^7.0.2",
"serve": "^11.3.2"
},
"dependencies": {
"merlin": "0.0.1-0"
}
}