-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.8 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
{
"name": "jshint-stylish-summary",
"description": "A stylish summary reporter for jshint",
"version": "1.0.0",
"author": {
"name": "Sven Schönung <[email protected]> (http://sven.schoenung.org/)"
},
"homepage": "https://github.com/svenschoenung/jshint-stylish-summary.git",
"repository": {
"type": "git",
"url": "git://github.com/svenschoenung/jshint-stylish-summary.git"
},
"engines": {
"node": ">= 4"
},
"dependencies": {
"chalk": "^2.4.1",
"log-symbols": "^2.2.0",
"map-stream": "^0.1.0",
"plur": "^3.0.1",
"sprintf-js": "^1.0.3",
"string-length": "^2.0.0",
"text-table": "^0.2.0"
},
"devDependencies": {
"chai": "^4.1.2",
"chai-spies": "^1.0.0",
"codacy-coverage": "^3.0.0",
"coveralls": "^3.0.2",
"gulp": "^3.9.1",
"gulp-jscs": "^4.1.0",
"gulp-jscs-stylish": "^1.3.0",
"gulp-jshint": "^2.0.0",
"istanbul": "^0.4.2",
"jshint": "^2.9.1",
"jshint-stylish": "^2.2.1",
"mocha": "^5.2.0",
"mocha-lcov-reporter": "^1.0.0"
},
"scripts": {
"test": "istanbul cover ./node_modules/mocha/bin/_mocha test.js --report html -- -R spec",
"test-jshint": "jshint --config test/.jshintrc --reporter ./test-reporter.js test/*/*.js || true",
"test-gulp": "gulp --gulpfile test-gulpfile.js",
"coveralls": "istanbul cover ./node_modules/mocha/bin/_mocha test.js --report lcovonly -- -R spec && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage",
"codacy": "istanbul cover ./node_modules/mocha/bin/_mocha test.js --report lcovonly -- -R spec && cat ./coverage/lcov.info | ./node_modules/.bin/codacy-coverage && rm -rf ./coverage"
},
"keywords": [
"jshint",
"stylish",
"summary",
"jshint-stylish",
"lint",
"reporter"
],
"license": "MIT"
}