-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
53 lines (53 loc) · 1.69 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
52
53
{
"name": "rainbow-js-arc",
"version": "0.3.0",
"description": "The Arc programming language, reimplemented in Java, then ported to JavaScript.",
"keywords": [
"programming-language",
"arc",
"scheme",
"lisp"
],
"homepage": "https://github.com/arclanguage/rainbow-js#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/arclanguage/rainbow-js.git"
},
"bugs": {
"url": "https://github.com/arclanguage/rainbow-js/issues"
},
"author": {
"name": "Arc language community",
"url": "https://github.com/arclanguage"
},
"license": "Artistic-2.0",
"scripts": {
"rainbow-js-arc": "cd src/arc/ && ../../dist/node/rainbow-node.js",
"all": "npm run clean && npm run build && npm test",
"clean": "rm -rf build dist",
"build": "npm run build-custom && npm run build-closure",
"build-custom": "node build.mjs",
"build-closure": "mkdir -p dist/gh-pages/test/ && google-closure-compiler --compilation_level ADVANCED_OPTIMIZATIONS --js src/web/index-first.js --js src/rainbow.js --js src/web/index-last.js --js_output_file dist/gh-pages/test/index-min.js",
"build-gh-pages": "npm run build",
"test": "cd src/arc/ && node ../../dist/node/rainbow-node.js run-compat -e '(quit:if (<= 404/408 (rat)) 0 1)' -q",
"prepare": "npm run build-custom"
},
"main": "dist/node/rainbow-node.js",
"bin": "./dist/node/rainbow-node.js",
"dependencies": {
"commander": "^8.3.0",
"fs-extra": "^10.0.0"
},
"devDependencies": {
"google-closure-compiler": "^20211107.0.0"
},
"files": [
"/src/arc/**",
"/src/node/**",
"/src/rainbow.js",
"/AUTHORS.md",
"/build.mjs",
"/LICENSE.md",
"/README.md"
]
}