forked from mfncooper/mockery
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
60 lines (60 loc) · 1.2 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
50
51
52
53
54
55
56
57
58
59
60
{
"name": "mockery-next",
"version": "2.0.1-2",
"description": "Simplifying the use of mocks with Node.js",
"keywords": [
"mock",
"stub",
"require",
"module",
"cache",
"unit",
"test",
"unittest",
"testing",
"tdd"
],
"author": "Andrew Bradley <cspotcode@gmail.com>",
"contributors": [
{
"name": "Martin Cooper",
"email": "mfncooper@gmail.com"
},
{
"name": "Bryan Donovan",
"email": "bdondo@gmail.com"
},
{
"name": "Dav Glass",
"email": "davglass@gmail.com"
}
],
"repository": {
"type": "git",
"url": "git://github.com/cspotcode/mockery-next.git"
},
"bugs": {
"url": "http://github.com/cspotcode/mockery-next/issues"
},
"main": "mockery.js",
"dependencies": {},
"jshintConfig": {
"node": true
},
"devDependencies": {
"istanbul": "~0.3.5",
"jshint": "~2.6.0",
"sinon": "1.2.x",
"vows": "~0.8.1"
},
"scripts": {
"pretest": "jshint mockery.js ./test/*.js",
"test": "istanbul cover --print both -- vows --spec ./test/*.js"
},
"licenses": [
{
"type": "MIT",
"url": "http://github.com/cspotcode/mockery-next/raw/master/LICENSE"
}
]
}