-
Notifications
You must be signed in to change notification settings - Fork 128
/
package.json
48 lines (48 loc) · 1 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
{
"name": "rewire",
"version": "7.0.0",
"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": "[email protected]"
},
"main": "lib/index.js",
"homepage": "https://github.com/jhnns/rewire",
"bugs": {
"url": "https://github.com/jhnns/rewire/issues",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "git://github.com/jhnns/rewire.git"
},
"devDependencies": {
"@types/node": "^17.0.35",
"expect.js": "^0.3.1",
"mocha": "^10.0.0",
"nyc": "^15.1.0",
"rewire": "file://.",
"ts-node": "^10.8.0",
"typescript": "^4.6.4"
},
"license": "MIT",
"scripts": {
"test": "nyc --reporter=html --reporter=lcov mocha -r ts-node/register -R spec"
},
"dependencies": {
"eslint": "^8.47.0"
}
}