forked from puffnfresh/roy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 835 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
{
"name": "roy",
"description": "Small functional language that compiles to JavaScript",
"keywords": [
"javascript",
"language",
"roy",
"compiler"
],
"author": "Brian McKenna <[email protected]> (http://brianmckenna.org/)",
"version": "0.2.2",
"engines": {
"node": ">=0.4.0"
},
"main": "src/compile.js",
"bin": {
"roy": "./roy"
},
"scripts": {
"prepublish": "node_modules/.bin/grunt jison",
"test": "node_modules/.bin/grunt jison lint jasmine"
},
"homepage": "http://roy.brianmckenna.org/",
"dependencies": {
"escodegen": "0.0.22",
"source-map": "0.1.8",
"underscore": "1.5.2",
"unicode-categories": "0.9.1"
},
"devDependencies": {
"jison": "0.2.7",
"grunt": "0.3.15",
"commonjs-everywhere": "~0.8.0",
"jasmine-node": "1.5.0"
}
}