-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
76 lines (76 loc) · 1.7 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "closure-linter-wrapper",
"description": "Node Wrapper to allow access to Google Closure Linter from NodeJS",
"version": "1.1.0",
"homepage": "https://github.com/jmendiara/node-closure-linter-wrapper",
"author": {
"name": "Javier Mendiara Cañardo",
"email": "[email protected]"
},
"contributors": [
{
"name": "Denis Ciccale",
"email": "[email protected]"
},
{
"name": "Sergio Ruiz",
"email": "[email protected]"
},
{
"name": "Jaime Pastor Pueyo",
"email": "[email protected]"
},
{
"name": "David Cantelar - @dcantelar",
"email": "[email protected]"
},
{
"name": "ama-ch"
},
{
"name": "Michael Mifsud - @xyzfer"
},
{
"name": "Garrett Wu - @garrettwu"
},
{
"name": "Jeremy Banks - @jeremybanks"
}
],
"repository": {
"type": "git",
"url": "https://github.com/jmendiara/node-closure-linter-wrapper.git"
},
"bugs": {
"url": "https://github.com/jmendiara/node-closure-linter-wrapper/issues"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/jmendiara/node-closure-linter-wrapper/blob/master/LICENSE-MIT"
}
],
"main": "lib/closure-linter-wrapper",
"engines": {
"node": ">= 0.8.0"
},
"scripts": {
"test": "grunt simplemocha"
},
"devDependencies": {
"grunt-contrib-jshint": "^0.11.2",
"grunt-contrib-watch": "^0.6.1",
"grunt-simple-mocha": "^0.4.0",
"grunt": "^0.4.5",
"mocha": "^2.2.5",
"chai": "^3.0.0",
"sinon": "^1.15.3",
"grunt-release": "^0.13.0"
},
"keywords": [
"closure-linter"
],
"dependencies": {
"colors": "^1.1.2"
}
}