Skip to content

Commit

Permalink
Fix #70 Add DLQ rebumitter tool
Browse files Browse the repository at this point in the history
  • Loading branch information
regevbr committed Nov 21, 2019
1 parent 7665c4c commit 7e038e4
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,15 @@
"node": ">=6"
},
"scripts": {
"clean": "rm -rf node_modules build coverage dist",
"build": "npm run lint && npm run buildDist",
"buildDist": "rm -rf dist/* && ./node_modules/.bin/tsc",
"test": "npm run lint && npm run mocha",
"lint": "tslint -c tslint.json 'src/**/*.ts'",
"mocha": "node --preserve-symlinks -r source-map-support/register node_modules/mocha/bin/_mocha --opts src/test/mocha.opts",
"cover": "rm -rf coverage && nyc --reporter=lcov --reporter=text-summary npm run test",
"lint": "tslint -c tslint.json 'src/**/*.ts' 'test/**/*.ts'"
"cover": "npm run cleanCoverage && nyc --reporter=lcov --reporter=text-summary npm run test",
"compile": "./node_modules/.bin/tsc",
"cleanCoverage": "rm -rf .nyc_output coverage",
"cleanDist": "rm -rf dist",
"build": "npm run lint && npm run buildDist",
"buildDist": "npm run cleanDist && npm run compile"
},
"repository": {
"type": "git",
Expand Down

0 comments on commit 7e038e4

Please sign in to comment.