-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 845 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
42
43
{
"name": "akira",
"author": "Josh Perez <[email protected]>",
"version": "0.0.1",
"description": "toy functional language that transpiles to JavaScript",
"scripts": {
"start": "gulp",
"test": "gulp test"
},
"repository": {
"type": "git",
"url": "https://github.com/goatslacker/akira.git"
},
"dependencies": {
"bluebird": "^2.3.6",
"dune": "^0.2.0",
"escodegen": "^1.4.1",
"esprima": "^1.2.2",
"fu": "^0.1.0"
},
"bundledDependencies": [
"Store",
"ast",
"gulp-akira",
"tg",
"prelude",
"z"
],
"devDependencies": {
"gulp": "^3.8.8",
"gulp-rename": "^1.2.0",
"gulp-streamify": "0.0.5",
"gulp-vm": "^1.0.1",
"jison": "^0.4.15"
},
"bin": {
"akira": "./bin/akira"
},
"main": "index.js",
"engines": {
"node": ">= 0.4.0"
}
}