-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
48 lines (48 loc) · 1.07 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
{
"name": "gulp-fixmyjs",
"version": "1.0.2",
"description": "fixmyjs plugin for gulp",
"keywords": [
"fix",
"gulpplugin",
"fixmyjs",
"jshint",
"linting",
"js",
"lint"
],
"author": {
"name": "Kirill Cherkashin",
"url": "https://github.com/kirjs"
},
"repository": "kirjs/gulp-fixmyjs",
"files": [
"index.js"
],
"scripts": {
"test": "istanbul test _mocha --report html -- test/*.js --reporter spec",
"test-debug": "node --debug-brk istanbul test _mocha --report html -- test/*.js --reporter spec",
"coveralls": "istanbul cover _mocha --report lcovonly -- -R spec && istanbul-coveralls"
},
"dependencies": {
"fixmyjs": "*",
"gulp-util": "^3.0.1",
"jshint": "~2.9.3",
"rcloader": "~0.2.1",
"through2": "*"
},
"devDependencies": {
"coveralls": "*",
"event-stream": "*",
"istanbul": "*",
"istanbul-coveralls": "^1.0.1",
"mocha": "*",
"mocha-lcov-reporter": "*",
"should": "^11.1.0"
},
"engines": {
"node": ">=0.9.0",
"npm": ">=1.2.10"
},
"license": "MIT"
}