forked from jhnns/rewire
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 959 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
41
42
43
44
45
46
{
"name": "rewire",
"version": "4.0.1",
"description": "Easy dependency injection for node.js unit testing",
"keywords": [
"dependency",
"injection",
"mock",
"shim",
"module",
"unit",
"test",
"leak",
"inspect",
"fake",
"require"
],
"author": {
"name": "Johannes Ewald",
"email": "mail@johannesewald.de"
},
"main": "lib/index.js",
"homepage": "https://github.com/jhnns/rewire",
"bugs": {
"url": "https://github.com/jhnns/rewire/issues",
"email": "mail@johannesewald.de"
},
"repository": {
"type": "git",
"url": "git://github.com/jhnns/rewire.git"
},
"devDependencies": {
"coffeescript": "^2.1.1",
"expect.js": "^0.3.1",
"mocha": "^7.1.0",
"rewire": "file://."
},
"license": "MIT",
"scripts": {
"test": "mocha -R spec",
"coverage": "istanbul cover ./node_modules/mocha/bin/_mocha"
},
"dependencies": {
"eslint": "^6.8.0"
}
}