-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 1.43 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
61
62
63
64
65
66
67
68
69
70
{
"name": "smplog",
"version": "0.2.0",
"description": "Simple logging module to stdout. Machine and human readable.",
"main": "index.js",
"scripts": {
"ava": "ava --watch",
"test": "nyc ava",
"coverage": "open coverage/index.html",
"lint": "eslint .",
"precommit": "npm run lint",
"prepush": "npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/finboxio/smplog.git"
},
"keywords": [
"log"
],
"author": "finboxio",
"license": "MIT",
"bugs": {
"url": "https://github.com/finboxio/smplog/issues"
},
"homepage": "https://github.com/finboxio/smplog#readme",
"dependencies": {
"chalk": "4.1.0",
"json-stringify-safe": "5.0.1",
"object-assign": "4.1.1"
},
"devDependencies": {
"ava": "3.13.0",
"eslint": "7.13.0",
"eslint-config-standard": "16.0.1",
"eslint-plugin-promise": "4.2.1",
"eslint-plugin-standard": "4.1.0",
"husky": "4.3.0",
"intercept-stdout": "0.1.2",
"nyc": "15.1.0",
"strip-ansi": "6.0.0"
},
"ava": {
"timeout": "2s",
"verbose": true,
"files": [
"test/*.js"
],
"source": [
"**/*.js"
]
},
"nyc": {
"check-coverage": true,
"lines": 80,
"statements": 80,
"functions": 80,
"branches": 80,
"reporter": [
"text",
"text-summary",
"html"
],
"exclude": [
"test/",
"**/test",
"node_modules/**"
]
}
}