-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.3 KB
/
package.json
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": "cene",
"version": "0.0.44",
"description": "Cene is an easy-to-bootstrap Lisp dialect with purity and JS integration.",
"homepage": "https://github.com/era-platform/cene",
"license": "MIT",
"author": {
"name": "Era organization",
"url": "https://github.com/era-platform"
},
"repository": {
"type": "git",
"url": "https://github.com/era-platform/cene.git"
},
"dependencies": {
"argparse": "^2.0.1",
"uglify-js": "^3.14.3"
},
"scripts": {
"all": "npm run clean && npm run build && npm test",
"clean": "rm -rf build dist",
"build": "./build-demos.sh",
"build-gh-pages": "npm run build",
"test": "node cene.js -cEC"
},
"main": "cene.js",
"bin": "./cene.js",
"files": [
"/buildlib/lathe.js",
"/buildlib/lathe-fs.js",
"/lib-cene/big.cene",
"/lib-cene/build-util.cene",
"/lib-cene/chops.cene",
"/lib-cene/js.cene",
"/lib-cene/lens.cene",
"/lib-cene/precedence.cene",
"/lib-cene/quasiquote.cene",
"/lib-cene/reader.cene",
"/lib-cene/string.cene",
"/src/cene-api.js",
"/src/cene-runtime.js",
"/src/era-code-gen-js.js",
"/src/era-misc.js",
"/src/era-misc-strmap-avl.js",
"/src/era-reader.js",
"/src/prelude-util.cene",
"/cene.js",
"/LICENSE.txt",
"/README.md"
]
}