-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.26 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": "@kth/log",
"version": "4.0.7",
"description": "Logging module for Node.js applications.",
"main": "index.js",
"files": [
"dist"
],
"author": {
"name": "KTH",
"email": "infosys@kth.se",
"url": "https://github.com/KTH"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/KTH/kth-node-log"
},
"scripts": {
"lint": "eslint \"**/*.js\" --quiet",
"lint-v": "eslint \"**/*.js\" ",
"test": "jest",
"test:watch": "jest --watch",
"build": "./build.sh",
"prepare": "bash -c 'if [ -f ./node_modules/.bin/husky ]; then husky install; fi'"
},
"dependencies": {
"bunyan": "^1.8.15",
"bunyan-format": "^0.2.1"
},
"keywords": [
"node",
"logging",
"syslog"
],
"devDependencies": {
"@kth/eslint-config-kth": "^3.0.13",
"eslint": "^8.35.0",
"husky": "^7.0.4",
"jest": "^27.5.1",
"prettier": "^2.8.4",
"pretty-quick": "^3.1.3"
},
"prettier": {
"arrowParens": "avoid",
"printWidth": 120,
"semi": false,
"singleQuote": true,
"trailingComma": "es5"
},
"// (jest)": "configuration for jest",
"jest": {
"clearMocks": true,
"notifyMode": "failure-change",
"testEnvironment": "node",
"verbose": true
}
}