forked from tessel/colony-compiler
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 811 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
{
"name": "colony-compiler",
"version": "1.0.1",
"description": "Compiles JavaScript to the Lua superset used by Tessel.",
"main": "./src/index.js",
"directories": {
"example": "examples"
},
"bin": {
"colony-compiler": "./bin/colony-compiler.js"
},
"repository": {
"type": "git",
"url": "git://github.com/tessel/colony-compiler.git"
},
"scripts": {
"test": "./test/npm.js"
},
"dependencies": {
"colors": "~0.6.1",
"optimist": "~0.5.2",
"async": "~0.9.0"
},
"devDependencies": {
"tape": "~2.3.2",
"tap": "git+https://github.com/tcr/node-tap.git#4f96b1",
"skim": "~0.1.1",
"concat-stream": "~1.4.5",
"tar": "~0.1.19",
"rem": "~0.7.0-2"
},
"author": "Tim Cameron Ryan",
"license": "MIT",
"readmeFilename": "README.md"
}