forked from jaredly/myntax
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 1.23 KB
/
package.json
File metadata and controls
29 lines (29 loc) · 1.23 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
{
"name": "myntax",
"version": "1.0.0-alpha.1",
"author": {
"name": "Jared Forsyth",
"email": "jared@jaredforsyth.com",
"url": "https://jaredforsyth.com"
},
"dependencies": {
"bsb-native": "4.0.6",
"let-anything": "1.0.3",
"watch": "^1.0.2"
},
"scripts": {
"start": "bsb -make-world -backend native -w",
"build": "bsb -make-world -backend native",
"clean": "bsb -clean-world",
"example": "node watch.js example/src",
"test": "./lib/bs/native/test.nativ",
"lisp": "./lib/bs/native/lisp.native bin parsable/test/minimal.rel > node_modules/out.bin && ./node_modules/bs-platform/lib/bsc.exe -impl node_modules/out.bin && node node_modules/out.js",
"ml": "./lib/bs/native/lisp.native ml parsable/test/minimal.rel",
"docs": "./lib/bs/native/lisp.native docs > docs/LispGrammar.md",
"mll": "./lib/bs/native/refmt.native ml-lisp parsable/lisp parsable/test/minimal.rel",
"debug": "./lib/bs/native/lisp.native debug parsable/test/tiny.rel",
"pretty": "./lib/bs/native/lisp.native pretty parsable/test/small.rel",
"pretty-tiny": "./lib/bs/native/lisp.native pretty parsable/test/tiny.rel",
"regen": "./lib/bs/native/pack.native dump parsable/grammar > src/grammarGrammar.re"
}
}