Skip to content

Commit 8c0dfe7

Browse files
committed
deps, scripts
1 parent db336e1 commit 8c0dfe7

File tree

3 files changed

+10
-8
lines changed

3 files changed

+10
-8
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
node_modules
22
.DS_Store
33
.nyc_output
4+
coverage

.npmignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
src
21
test
32
contributing.md
43
.editorconfig
54
.travis.yml
65
.nyc_output
6+
coverage

package.json

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,11 @@
88
},
99
"bugs": "https://github.com/reshape/plugin-util/issues",
1010
"devDependencies": {
11-
"ava": "0.15.x",
11+
"ava": "^0.16.0",
1212
"coveralls": "2.x",
13-
"nyc": "6.x",
14-
"reshape": "reshape/reshape",
13+
"nyc": "^7.1.0",
14+
"reshape": "0.2.0",
15+
"snazzy": "^4.0.1",
1516
"standard": "7.x"
1617
},
1718
"engines": {
@@ -22,9 +23,9 @@
2223
"main": "lib",
2324
"repository": "reshape/plugin-util",
2425
"scripts": {
25-
"coverage": "nyc ava --reporter html",
26-
"coveralls": "nyc --reporter=lcov ava && cat ./coverage/lcov.info | coveralls",
27-
"lint": "standard",
28-
"test": "ava"
26+
"coverage": "nyc ava && nyc report --reporter=html && open ./coverage/index.html",
27+
"coveralls": "nyc report --reporter=text-lcov | coveralls",
28+
"pretest": "standard | snazzy",
29+
"test": "nyc ava"
2930
}
3031
}

0 commit comments

Comments
 (0)