-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.01 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.01 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
30
31
32
33
34
35
36
37
38
{
"name": "webchurch",
"version": "0.0.1",
"description": "A Church-to-Javascript compiler that works on the web",
"main": "evaluate.js",
"bin": {
"webchurch": "./compile.sh"
},
"scripts": {
"test": "node tester.js test/load.church test/basic.church test/conditioning.church test/mh.church test/support-change.church test/probmods",
"server": "node node_modules/http-server/bin/http-server"
},
"repository": {
"type": "git",
"url": "https://github.com/probmods/webchurch.git"
},
"dependencies": {
"backbone": "~1.1.2",
"browserify": "3.38.0",
"codemirror": "4.0.3",
"d3": "3.4.4",
"escodegen": "0.0.26",
"esprima": "1.0.4",
"http-server": "^0.6.1",
"optparse": "1.0.5",
"seedrandom": "^2.3.6",
"shelljs": "^0.3.0",
"source-map": "0.1.30",
"uglify-js": "^2.4.16",
"underscore": "~1.6.0"
},
"author": {
"name": "Julius Cheng",
"email": "juliusc@stanford.edu",
"url": "http://stanford.edu/~juliusc"
},
"license": "MIT"
}