forked from biwascheme/biwascheme
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 998 Bytes
/
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
{
"name": "biwascheme",
"description": "A practical Scheme interpreter written in JavaScript",
"version": "0.6.9",
"author": "Yutaka HARA <yutaka.hara.gmail.com>",
"license": "MIT",
"homepage": "https://www.biwascheme.org/",
"keywords": [
"scheme",
"lisp",
"interpreter",
"repl",
"biwa"
],
"repository": {
"type": "git",
"url": "git://github.com/biwascheme/biwascheme.git"
},
"main": "./release/node_biwascheme.js",
"dependencies": {
"optparse": "1.0.5",
"underscore": "1.9.1",
"underscore.string": "3.3.5"
},
"devDependencies": {
"body-parser": ">0",
"express": "^4.17.1",
"marked": "^0.7.0",
"uglify-js": "^3.6.0"
},
"bin": {
"biwas": "./bin/biwas"
},
"scripts": {
"node-test": "node test/node_functions.js"
},
"files": [
"bin/biwas",
"release/node_biwascheme.js"
]
}