forked from shouldjs/should.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1002 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
32
33
34
35
36
37
38
39
40
{
"name": "should",
"description": "test framework agnostic BDD-style assertions",
"version": "4.1.0",
"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": "gulp test",
"zuul": "zuul -- ./test/**/*.test.js ./test/*.test.js",
"browser": "gulp script"
},
"devDependencies": {
"browserify": "latest",
"mocha-better-spec-reporter": "1.1.0",
"gulp-mocha": "1.1.1",
"gulp-uglify": "1.0.1",
"gulp-util": "^2.2.14",
"gulp": "^3.6.2",
"vinyl-source-stream2": "^0.1.1",
"gulp-load-plugins": "^0.5.1",
"gulp-rename": "^1.2.0",
"gulp-header": "^1.0.2",
"mocha": "latest",
"zuul": "latest"
},
"keywords": [
"test",
"bdd",
"assert"
],
"main": "./lib/should.js",
"license": "MIT",
"dependencies": {
"should-equal": "0.0.1"
}
}