Skip to content

Commit b238a52

Browse files
authored
Merge pull request #392 from MicahZoltu/cross-platform-scripts
Updates scripts so that they run on Windows.
2 parents fba2b03 + c6aad44 commit b238a52

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,12 @@
77
"solcjs": "solcjs"
88
},
99
"scripts": {
10-
"lint": "semistandard",
10+
"lint": "node ./node_modules/semistandard/bin/cmd.js",
1111
"prepublish": "node downloadCurrentVersion.js && node verifyVersion.js",
1212
"pretest": "npm run lint",
1313
"test": "tape ./test/index.js",
14-
"coverage": "istanbul cover node_modules/tape/bin/tape ./test/index.js",
15-
"coveralls": "npm run coverage && coveralls <coverage/lcov.info"
14+
"coverage": "node ./node_modules/istanbul/lib/cli.js cover ./node_modules/tape/bin/tape ./test/index.js",
15+
"coveralls": "npm run coverage && node ./node_modules/coveralls/bin/coveralls.js <coverage/lcov.info"
1616
},
1717
"repository": {
1818
"type": "git",

0 commit comments

Comments
 (0)