forked from sctb/lumen
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 859 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 859 Bytes
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
{
"name": "dax",
"version": "0.1.27",
"description": "A Lisp for JavaScript",
"main": "index.js",
"bin": {
"dax": "bin/cli.js"
},
"scripts": {
"clean": "git checkout lib.js",
"build": "node . -c lib.l -o lib.js",
"rebuild": "npm run clean && npm run build",
"test": "npm run build && node . test.l",
"start": "node bin/cli.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lyescript/dax.git"
},
"keywords": [
"lumen",
"dax",
"lisp",
"js",
"javascript",
"compiler"
],
"author": "Shawn Presser <shawnpresser@gmail.com>",
"contributors": [
"Scott Bell <scott@sctsm.com>"
],
"license": "BSD-2-Clause",
"bugs": {
"url": "https://github.com/lyescript/dax/issues"
},
"homepage": "https://github.com/lyescript/dax#readme",
"dependencies": {}
}