-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 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
{
"name": "rehire",
"version": "1.1.1",
"description": "Easy dependency injection for unit tests (based on rewire)",
"keywords": [
"dependency",
"injection",
"di",
"mock",
"stub",
"unit",
"test",
"fake",
"require",
"rewire",
"proxyquire"
],
"main": "index.js",
"scripts": {
"lint": "eslint index.js tests",
"lint:fix": "npm run lint -- --fix",
"test": "npm run lint && npm run test:unit && npm run test:e2e",
"test:unit": "nyc glace tests/unit --dots",
"test:e2e": "glace tests/e2e --dots"
},
"repository": {
"type": "git",
"url": "git+https://github.com/schipiga/rehire.git"
},
"author": "Sergei Chipiga",
"license": "MIT",
"bugs": {
"url": "https://github.com/schipiga/rehire/issues"
},
"homepage": "https://github.com/schipiga/rehire#readme",
"dependencies": {
"rewire": "4.0.1"
},
"files": [
"index.js"
],
"nyc": {
"exclude": [
"tests"
],
"check-coverage": true,
"branches": 100,
"functions": 100,
"lines": 100,
"statements": 100
},
"devDependencies": {
"eslint": "^5.15.3",
"glace-core": "^2.0.4",
"nyc": "^13.3.0",
"pre-commit": "^1.2.2"
}
}