-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1000 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
43
{
"name": "virtsecgroup",
"version": "1.0.0",
"description": "Virtual AWS security groups for Terraform",
"license": "UNLICENSED",
"private": true,
"author": "Trevor Robinson <[email protected]>",
"main": "lib/index.js",
"files": [
"lib"
],
"bin": {
"virtsecgroup": "lib/index.js"
},
"scripts": {
"prepublish": "gulp",
"build": "gulp",
"clean": "gulp clean",
"examples": "gulp examples",
"lint": "gulp lint",
"start": "node lib/index.js",
"test": "mocha -r babel-register"
},
"dependencies": {
"commander": "^2.9.0",
"nearley": "^2.7.13"
},
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-eslint": "^7.1.1",
"babel-preset-es2015": "^6.18.0",
"babel-register": "^6.18.0",
"chai": "^3.5.0",
"del": "^2.2.2",
"eslint": "^3.11.1",
"gulp": "^3.9.1",
"gulp-babel": "^6.1.2",
"gulp-eslint": "^3.0.1",
"gulp-rename": "^1.2.2",
"gulp-run": "^1.7.1",
"mocha": "^3.2.0"
}
}