-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 1.67 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
73
74
75
76
77
{
"name": "@kth/cortina-block",
"version": "6.2.0",
"description": "Node.js module for fetching Cortina blocks and optionally cache using Redis.",
"main": "dist/index.js",
"files": [
"dist"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"lint": "eslint \"**/*.js\" --quiet",
"lint-v": "eslint \"**/*.js\" ",
"test": "jest",
"test:watch": "jest --watch",
"build": "npm ci && tsc",
"prepare": "husky"
},
"repository": {
"type": "git",
"url": "https://github.com/KTH/kth-node-cortina-block"
},
"keywords": [
"node",
"kth",
"cortina",
"blocks"
],
"author": {
"name": "KTH",
"email": "[email protected]",
"url": "https://github.com/KTH"
},
"license": "MIT",
"dependencies": {
"@kth/log": "^4.0.7",
"jsdom": "^22.1.0",
"kth-node-redis": "^3.3.0"
},
"peerDependencies": {
"@kth/log": "^4.0.5"
},
"devDependencies": {
"@kth/eslint-config-kth": "^3.4.0",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.12",
"@types/jsdom": "^21.1.6",
"eslint": "^8.57.0",
"eslint-plugin-jest-dom": "^5.2.0",
"express": "^4.19.2",
"husky": "^9.0.11",
"jest": "^29.7.0",
"lint-staged": "^15.2.2",
"prettier": "^3.2.5",
"ts-jest": "^29.1.2",
"typescript": "^5.4.3"
},
"prettier": {
"arrowParens": "avoid",
"printWidth": 120,
"semi": false,
"singleQuote": true,
"trailingComma": "es5"
},
"// (jest)": "configuration for jest",
"jest": {
"preset": "ts-jest",
"clearMocks": true,
"notifyMode": "failure-change",
"testEnvironment": "node",
"verbose": true
},
"engines": {
"node": ">=18.0.0"
}
}