-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.21 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.21 KB
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
50
51
52
53
54
55
56
57
58
59
60
{
"name": "deride",
"description": "Mocking library based on composition",
"version": "1.3.0",
"homepage": "https://github.com/guzzlerio/deride",
"author": {
"name": "Andrew Rea",
"email": "email@andrewrea.co.uk",
"url": "http://www.andrewrea.co.uk"
},
"contributors": [
{
"name": "James Allen",
"url": "https://github.com/jamlen"
}
],
"repository": {
"type": "git",
"url": "git://github.com/guzzlerio/deride.git"
},
"bugs": {
"url": "https://github.com/guzzlerio/deride/issues"
},
"main": "lib/deride",
"engines": {
"node": ">= 4.0.0"
},
"scripts": {
"test": "grunt"
},
"devDependencies": {
"grunt": "^1.0.1",
"grunt-contrib-jshint": "~1.1.0",
"grunt-contrib-watch": "~1.0.0",
"grunt-mocha-istanbul": "^5.0.2",
"grunt-mocha-test": "~0.13.2",
"grunt-notify": "~0.4.5",
"istanbul": "^0.4.5",
"mocha": "^3.5.3",
"should": "^13.0.1"
},
"keywords": [
"test",
"testing",
"test double",
"mocking",
"mock",
"stub",
"wrap",
"expect",
"expectations",
"setup"
],
"dependencies": {
"debug": "^3.0.1",
"lodash": "^4.17.4",
"when": "^3.7.8"
},
"license": "MIT"
}