-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
50 lines (50 loc) · 985 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
47
48
49
50
{
"name": "mock-stdio",
"version": "1.0.3",
"description": "mock stdio output for tests",
"main": "index.js",
"scripts": {
"test": "nyc mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/catdad/mock-stdio.git"
},
"author": "Kiril Vatev <vatev.1@gmail.com>",
"license": "ISC",
"bugs": {
"url": "https://github.com/catdad/mock-stdio/issues"
},
"homepage": "https://github.com/catdad/mock-stdio#readme",
"dependencies": {},
"devDependencies": {
"chai": "^3.5.0",
"codeclimate-test-reporter": "^0.4.1",
"mocha": "^3.3.0",
"nyc": "^10.3.2"
},
"nyc": {
"check-coverage": true,
"lines": 100,
"statements": 100,
"functions": 100,
"branches": 100,
"reporter": [
"lcov",
"text"
]
},
"directories": {
"test": "test"
},
"keywords": [
"mock",
"stdio",
"stdout",
"stderr",
"console.log",
"console.error",
"console",
"log"
]
}