forked from shouldjs/should.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.09 KB
/
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
32
33
34
35
36
37
38
39
40
41
42
{
"name": "should",
"description": "test framework agnostic BDD-style assertions",
"version": "7.1.1",
"author": "TJ Holowaychuk <[email protected]> and contributors",
"repository": {
"type": "git",
"url": "https://github.com/shouldjs/should.js.git"
},
"homepage": "https://github.com/shouldjs/should.js",
"scripts": {
"test": "mocha -R mocha-better-spec-reporter --check-leaks ./test/*.test.js ./test/**/*.test.js",
"zuul": "zuul -- ./test/**/*.test.js ./test/*.test.js",
"browser": "gulp script"
},
"devDependencies": {
"browserify": "latest",
"eslint": "latest",
"gulp": "^3.8.10",
"gulp-header": "^1.2.2",
"gulp-rename": "^1.2.0",
"gulp-uglify": "^1.0.1",
"mocha": "latest",
"mocha-better-spec-reporter": "latest",
"vinyl-buffer": "^1.0.0",
"vinyl-source-stream": "^1.1.0",
"zuul": "latest"
},
"keywords": [
"test",
"bdd",
"assert",
"should"
],
"main": "./index.js",
"license": "MIT",
"dependencies": {
"should-equal": "0.5.0",
"should-format": "0.3.1",
"should-type": "0.2.0"
}
}