-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
31 lines (31 loc) · 962 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
{
"name": "should-throw-instanceof",
"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 . --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 --recursive",
"test": "npm run unittest && npm run lint"
},
"repository": {
"type": "git",
"url": "[email protected]:bodylabs/should-throw-instanceof.git"
},
"dependencies": {
"underscore": "~1.8.3"
},
"peerDependencies": {
"should": "*"
},
"devDependencies": {
"bodylabs-javascript-style": "~4.0.0",
"eslint": "^2.4.0",
"jscs": "^2.8.0",
"mocha": "^2.3.4",
"should": "^8.1.1"
}
}