-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
49 lines (49 loc) · 1.07 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
43
44
45
46
47
48
49
{
"name": "sinon-bluebird",
"version": "3.1.1",
"description": "Plugin that adds Bluebird Promise helper methods to Sinon.",
"main": "index.js",
"engines": {
"node": ">=0.10"
},
"scripts": {
"test": "standard --fix && mocha -R spec",
"test-cover": "nyc npm test",
"coveralls": "coveralls < coverage/lcov.info"
},
"repository": {
"type": "git",
"url": "https://github.com/toddbluhm/sinon-bluebird"
},
"keywords": [
"bluebird",
"sinon",
"promises",
"stub",
"mock",
"test"
],
"author": "Todd Bluhm",
"contributors": [
"Brian Moeskau",
"Kevin Moritz <kevinecor@gmail.com>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/toddbluhm/sinon-bluebird/issues"
},
"homepage": "https://github.com/toddbluhm/sinon-bluebird",
"peerDependencies": {
"sinon": "1.x",
"bluebird": ">=2.x"
},
"devDependencies": {
"bluebird": "^3.0.0",
"coveralls": "^3.0.0",
"mocha": "^3.0.0",
"nyc": "^10.0.0",
"should": "^13.0.0",
"sinon": "^1.0.0",
"standard": "^14.0.0"
}
}