-
Notifications
You must be signed in to change notification settings - Fork 34
/
package.json
42 lines (42 loc) · 1.05 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
{
"name": "gorillascript",
"description": "GorillaScript is a compile-to-JavaScript language designed to empower the user while attempting to prevent some common errors.",
"version": "0.9.10",
"author": {
"name": "Cameron Kenneth Knight",
"email": "[email protected]"
},
"keywords": [
"compile",
"language",
"gorilla",
"altjs"
],
"homepage": "http://ckknight.github.io/gorillascript/",
"bugs": "https://github.com/ckknight/gorillascript/issues",
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/ckknight/gorillascript"
},
"main": "index",
"bin": {
"gorilla": "./bin/gorilla"
},
"readmeFilename": "README",
"dependencies": {
"source-map": "~0.1.22",
"optimist": "~0.5.0"
},
"devDependencies": {
"promises-aplus-tests": "*",
"mocha": "~1.9.0",
"chai": "~1.6.0",
"sinon": "~1.7.2",
"sinon-chai": "~2.4.0",
"grunt-gorilla": "~0.1.2",
"grunt-contrib-uglify": "~0.2.1",
"grunt-mocha-test": "~0.4.0",
"grunt-contrib-clean": "~0.4.1"
}
}