-
Notifications
You must be signed in to change notification settings - Fork 110
/
package.json
57 lines (57 loc) · 1.27 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
54
55
56
57
{
"name": "pyret-lang",
"version": "0.0.0",
"description": "The Pyret programming language",
"main": "build/phase0/main-wrapper.js",
"directories": {
"doc": "docs",
"example": "examples",
"test": "tests"
},
"bundleDependencies": [
"browserify"
],
"dependencies": {
"ascii-table": "^0.0.9",
"benchmark": "^2.1.4",
"browserify": "^14.5.0",
"command-line-args": "^3.0.5",
"error-stack-parser": "^2.1.4",
"http": "0.0.0",
"jasmine": "^3.99.0",
"js-sha256": "^0.5.0",
"lockfile": "^1.0.4",
"node-uuid": "^1.4.8",
"q": "~1.0.1",
"requirejs": "~2.1.15",
"s-expression": "~2.2.0",
"seedrandom": "~2.3.10",
"sha.js": "^2.4.11",
"source-map": "^0.5.7",
"websocket": "^1.0.34"
},
"bin": {
"pyret": "src/server/pyret.js"
},
"scripts": {
"install": "make phaseA-deps",
"test": "make test-all"
},
"repository": {
"type": "git",
"url": "git://github.com/brownplt/pyret-lang"
},
"keywords": [
"programming",
"language",
"education",
"scripting",
"functional"
],
"author": "Joe Gibbs Politz",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/brownplt/pyret-lang/issues"
},
"homepage": "https://github.com/brownplt/pyret-lang"
}