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