-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
52 lines (52 loc) · 1.25 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
{
"name": "gulp-gjslint",
"version": "0.1.5",
"description": "Gulp task for running gjslint, the Google Closure linter.",
"main": "index.js",
"scripts": {
"test": "gulp mocha && gulp lint",
"codeclimate": "codeclimate < coverage/lcov.info"
},
"homepage": "https://www.github.com/TomSeldon/gulp-gjslint",
"repository": {
"type": "git",
"url": "https://www.github.com/TomSeldon/gulp-gjslint.git"
},
"keywords": [
"gulpplugin",
"lint",
"linter",
"gjslint",
"google",
"closure",
"closure-linter",
"closure-linter-wrapper"
],
"author": "Tom Seldon <[email protected]> (http://www.tomseldon.co.uk)",
"license": "BSD-2-Clause",
"peerDependencies": {
"gulp": "^3.8"
},
"dependencies": {
"chalk": "^0.5.1",
"closure-linter-wrapper": "^1.0.1",
"gulp-util": "^3.0.0",
"merge": "^1.1.3",
"through2": "^0.5.1"
},
"devDependencies": {
"chai": "^1.9.1",
"codeclimate-test-reporter": "0.0.4",
"gulp": "^3.8.7",
"gulp-istanbul": "^0.3.1",
"gulp-jscs": "^1.1.2",
"gulp-mocha": "^1.1.1",
"istanbul": "^0.3.2",
"jscs": "^1.5.9",
"mocha": "^1.21.0",
"rewire": "^2.1.0",
"sinon": "^1.10.3",
"sinon-chai": "^2.5.0",
"vinyl": "^0.3.2"
}
}