Skip to content

Commit

Permalink
Replace grunt with npm scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
nwoltman committed Aug 6, 2017
1 parent e552c45 commit ea9b6ea
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 60 deletions.
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ node_js:
- '4'
- '6'
- '7'
after_success: npm run coveralls
deploy:
provider: npm
email: [email protected]
Expand Down
51 changes: 0 additions & 51 deletions Gruntfile.js

This file was deleted.

16 changes: 7 additions & 9 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,6 @@
"engines": {
"node": ">=4"
},
"scripts": {
"test": "grunt"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nwoltman/node-uid-generator.git"
Expand All @@ -35,13 +32,14 @@
"homepage": "https://github.com/nwoltman/node-uid-generator",
"devDependencies": {
"coveralls": "^2.11.15",
"grunt": "^1.0.1",
"grunt-eslint": "^19.0.0",
"grunt-mocha-istanbul": "^5.0.2",
"grunt-mocha-test": "^0.13.2",
"istanbul": "^0.4.5",
"jit-grunt": "^0.10.0",
"eslint": "^4.4.0",
"mocha": "^3.1.2",
"nyc": "^11.1.0",
"should": "^11.1.1"
},
"scripts": {
"lint": "eslint index.js test/*.js",
"test": "eslint index.js test/*.js && nyc --reporter=html --reporter=text-summary mocha",
"coveralls": "nyc report --reporter=text-lcov | coveralls"
}
}

0 comments on commit ea9b6ea

Please sign in to comment.