-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 1.88 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
71
72
{
"name": "@kth/mongo",
"version": "4.0.15",
"description": "Database connection module for Node.js applications using Mongoose.",
"main": "lib/index.js",
"files": [
"lib"
],
"scripts": {
"lint": "eslint \"**/*.js\" --quiet",
"lint-v": "eslint \"**/*.js\"",
"codecheck": "prettier",
"build": "./build.sh",
"test": "npm i mongoose@6.6.0 && jest && npm uninstall mongoose",
"test:jest": "jest",
"test:watch": "jest --watch",
"test:notify": "jest --watch --notify",
"test:coverage": "jest --collectCoverage --detectOpenHandles",
"clean": "rm -r ./node_modules && rm package-lock.json",
"prepare": "if [ -f ./node_modules/.bin/husky ]; then husky install; fi"
},
"repository": {
"type": "git",
"url": "https://github.com/KTH/kth-node-mongo"
},
"author": {
"name": "KTH",
"email": "infosys@kth.se",
"url": "https://github.com/KTH"
},
"license": "MIT",
"dependencies": {
"@kth/log": "^4.0.6"
},
"peerdependencies": {
"mongoose": "^6.6.0"
},
"overrides": {
"semver-regex": "^3.1.3"
},
"devDependencies": {
"@babel/eslint-parser": "^7.19.1",
"@kth/eslint-config-kth": "^3.0.13",
"@types/jest": "^29.4.0",
"ansi-regex": "^6.0.1",
"eslint": "^8.35.0",
"husky": "^8.0.3",
"jest": "^29.4.3",
"jest-extended": "^4.0.2",
"node-notifier": "^10.0.1",
"prettier": "^2.8.4",
"pretty-quick": "^3.1.3",
"set-value": "^4.1.0"
},
"prettier": {
"arrowParens": "avoid",
"printWidth": 100,
"semi": false,
"singleQuote": true,
"trailingComma": "es5"
},
"jest": {
"//": "configuration version 2020-04-10 (API+NPM) - might also reside as module.exports in jest.config.js",
"clearMocks": true,
"notifyMode": "failure-change",
"setupFilesAfterEnv": [
"jest-extended/all"
],
"testEnvironment": "node",
"verbose": true
}
}