Skip to content

Commit

Permalink
Merge pull request DefinitelyTyped#6940 from Dashlane/simplify-packag…
Browse files Browse the repository at this point in the history
…e-scripts

Simplify scripts in package.json
  • Loading branch information
vvakame committed Dec 1, 2015
2 parents f83a46c + 4b6d9d6 commit 456b4ef
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,17 +20,17 @@
"node": ">= 0.12.0"
},
"scripts": {
"test": "./node_modules/.bin/dt --changes",
"changes": "./node_modules/.bin/dt --changes",
"lint": "./node_modules/.bin/dt --lint",
"tscparams": "./node_modules/.bin/dt --tscparams --no-tests --no-headers",
"all": "./node_modules/.bin/dt",
"dry": "./node_modules/.bin/dt --dry --changes",
"list": "./node_modules/.bin/dt --dry --print-files --print-refmap",
"last": "./node_modules/.bin/dt --dry --print-files --print-refmap --changes",
"files": "./node_modules/.bin/dt --dry --print-files",
"refmap": "./node_modules/.bin/dt --dry --print-refmap",
"help": "./node_modules/.bin/dt -h"
"test": "dt --changes",
"changes": "dt --changes",
"lint": "dt --lint",
"tscparams": "dt --tscparams --no-tests --no-headers",
"all": "dt",
"dry": "dt --dry --changes",
"list": "dt --dry --print-files --print-refmap",
"last": "dt --dry --print-files --print-refmap --changes",
"files": "dt --dry --print-files",
"refmap": "dt --dry --print-refmap",
"help": "dt -h"
},
"dependencies": {
},
Expand Down

0 comments on commit 456b4ef

Please sign in to comment.