-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove unneeded dependencies
- Loading branch information
Showing
1 changed file
with
4 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,20 @@ | ||
{ | ||
"name": "should-throw-instanceof", | ||
"version": "1.0.0", | ||
"version": "1.0.1", | ||
"description": "Helper function for more detailed error assertions than should.throw", | ||
"license": "BSD-2-Clause", | ||
"main": "src/should-throw-instanceof.js", | ||
"scripts": { | ||
"jscs": "jscs --config node_modules/bodylabs-javascript-style/jscs/jscsrc-shared src --extract '*.js'", | ||
"eslint": "eslint --config node_modules/bodylabs-javascript-style/eslint/eslintrc-shared.yml 'src/*.js'", | ||
"jscs": "jscs --config node_modules/bodylabs-javascript-style/jscs/jscsrc-shared . --extract '*.js'", | ||
"eslint": "eslint --config node_modules/bodylabs-javascript-style/eslint/eslintrc-shared.yml '**/*.js'", | ||
"lint": "npm run jscs && npm run eslint", | ||
"unittest": "mocha src/*.spec.js", | ||
"unittest": "mocha src --recursive", | ||
"test": "npm run unittest && npm run lint" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "[email protected]:bodylabs/should-throw-instanceof.git" | ||
}, | ||
"engines": { | ||
"node": "5.8.0", | ||
"npm": "3.5.x" | ||
}, | ||
"dependencies": { | ||
"underscore": "~1.8.3" | ||
}, | ||
|