-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
42 lines (42 loc) · 979 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
{
"name": "gss-compiler",
"description": "GSS rule compiler",
"version": "0.8.2",
"repository": {
"type": "git",
"url": "git://github.com/the-gss/compiler.git"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/the-gss/compiler/blob/master/LICENSE-MIT"
}
],
"devDependencies": {
"grunt": "~0.4.1",
"grunt-cafe-mocha": "~0.1.2",
"chai": "~1.5.0",
"mocha": "~1.9.0",
"grunt-contrib-watch": "~0.3.1",
"grunt-component-build": "~0.5.0",
"grunt-mocha-phantomjs": "~0.2.8",
"grunt-contrib-uglify": "~0.2.1",
"grunt-contrib-coffee": "~0.7.0",
"grunt-cli": "~0.1.13",
"sinon": "~1.10.2"
},
"keywords": [],
"scripts": {
"test": "node_modules/.bin/grunt test"
},
"main": "./lib/gss-compiler",
"dependencies": {
"gss-preparser": "*",
"ccss-compiler": "*",
"vfl-compiler": "*",
"vgl-compiler": "*"
},
"bin": {
"gss-compiler": "./bin/gss-compiler"
}
}