Skip to content

Commit 6b371c2

Browse files
authored
Merge pull request #54 from SimenB/deps
Update deps
2 parents 3cfacb3 + 209d7a3 commit 6b371c2

File tree

2 files changed

+20
-16
lines changed

2 files changed

+20
-16
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,5 @@
44
*.iml
55

66
coverage/
7+
.nyc_output/
78
test-output.xml

package.json

Lines changed: 19 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -8,27 +8,30 @@
88
],
99
"dependencies": {
1010
"csslint": "^0.10.0",
11-
"gulp-util": "^3.0.4",
12-
"rcloader": "^0.1.4",
13-
"through2": "^2.0.0"
11+
"gulp-util": "^3.0.7",
12+
"rcloader": "^0.2.1",
13+
"through2": "^2.0.1"
1414
},
1515
"devDependencies": {
16-
"coveralls": "^2.11.2",
16+
"coveralls": "^2.11.12",
1717
"csslint-stylish": "0.0.4",
18-
"eslint": "^1.1.0",
19-
"eslint-config-semistandard": "^5.0.0",
20-
"eslint-config-standard": "^4.1.0",
21-
"eslint-plugin-standard": "^1.2.0",
22-
"istanbul": "^0.3.14",
23-
"mocha": "^2.2.5",
24-
"rimraf": "^2.3.4",
25-
"should": "^7.0.3",
26-
"sinon": "^1.15.4"
18+
"eslint": "^3.2.2",
19+
"eslint-config-semistandard": "^7.0.0-beta.0",
20+
"eslint-config-standard": "^6.0.0-beta.2",
21+
"eslint-plugin-promise": "^2.0.1",
22+
"eslint-plugin-standard": "^2.0.0",
23+
"mocha": "^3.0.2",
24+
"node-version-check": "^2.1.0",
25+
"nyc": "^7.1.0",
26+
"rimraf": "^2.5.4",
27+
"should": "^11.0.0",
28+
"sinon": "^1.17.5"
2729
},
2830
"scripts": {
29-
"clean": "rimraf coverage/",
30-
"cover": "istanbul cover _mocha",
31-
"lint": "eslint index.js test/main.js",
31+
"clean": "rimraf coverage/ .nyc_output/",
32+
"cover": "nyc mocha",
33+
"postcover": "nyc report --reporter lcov",
34+
"lint": "node-version-gte-4 && eslint index.js test/main.js || node-version-lt-4",
3235
"precover": "npm run lint && npm run clean",
3336
"pretest": "npm run lint",
3437
"test": "mocha"

0 commit comments

Comments
 (0)