-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.21 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
{
"name": "kuali-logger",
"version": "0.2.4",
"description": "Standardized logger for Kuali apps",
"main": "lib/index.js",
"scripts": {
"test": "standard && jest --coverage",
"watch": "jest --watch",
"coverage:report": "open coverage/lcov-report/index.html",
"coverage:publish": "codecov",
"standard": "standard",
"standard:fix": "standard --fix"
},
"repository": "https://github.com/KualiCo/kuali-logger",
"author": "kuali",
"license": "AGPL-3.0",
"engines": {
"node": ">=8",
"npm": ">=3"
},
"jest": {
"coveragePathIgnorePatterns": [
"/test/"
],
"coverageThreshold": {
"global": {
"branches": 100,
"functions": 100,
"lines": 100,
"statements": 100
}
},
"verbose": true
},
"standard": {
"env": [
"node",
"jest"
]
},
"dependencies": {
"bunyan": "^1.8.12",
"bunyan-format": "^0.2.1",
"bunyan-middleware": "^1.0.0",
"bunyan-prettystream": "^0.1.3"
},
"devDependencies": {
"@types/jest": "^24.0.21",
"codecov": "^3.6.1",
"express": "^4.17.1",
"jest": "^24.9.0",
"lodash.toarray": "^4.4.0",
"standard": "^14.3.1",
"supertest": "^4.0.2"
}
}