-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 1.7 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
{
"name": "kth-node-redis",
"version": "3.3.0",
"description": "Redis client module for Node.js. Everything with Promises!",
"main": "lib/index.js",
"license": "MIT",
"files": [
"lib"
],
"author": {
"name": "KTH",
"email": "[email protected]",
"url": "https://github.com/KTH"
},
"scripts": {
"build": "./build.sh",
"test": "echo \"OK\"",
"test-toberevised": "jest",
"test:watch": "jest --watch",
"test:watch-update": "jest --watch -u",
"test:notify": "jest --watch --notify",
"test:coverage": "rm -rf ./coverage && jest --collectCoverage --detectOpenHandles",
"prepare": "bash -c 'if [ -f ./node_modules/.bin/husky ]; then husky install; fi'"
},
"repository": {
"type": "git",
"url": "https://github.com/KTH/kth-node-redis"
},
"keywords": [
"node",
"redis"
],
"dependencies": {
"@kth/log": "^4.0.7",
"bluebird": "^3.7.2",
"eslint": "^8.50.0",
"redis": "^3.1.2"
},
"overrides": {
"semver-regex": "^3.1.3"
},
"devDependencies": {
"@kth/eslint-config-kth": "^3.1.0",
"@types/jest": "^29.5.5",
"ansi-regex": "^6.0.1",
"jest-extended": "^4.0.2",
"prettier": "^3.3.3",
"pretty-quick": "^4.0.0",
"redis-mock": "^0.56.3",
"set-value": "^4.1.0"
},
"prettier": {
"arrowParens": "avoid",
"printWidth": 120,
"semi": false,
"singleQuote": true,
"trailingComma": "es5"
},
"// (jest)": "configuration version 2020-06-15 (API+NPM) - might also reside as module.exports in jest.config.js",
"jest": {
"clearMocks": true,
"notifyMode": "failure-change",
"setupFilesAfterEnv": [
"jest-extended"
],
"testEnvironment": "node",
"verbose": true
}
}