-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
63 lines (63 loc) · 1.53 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
{
"name": "@kth/kth-node-web-common",
"version": "9.5.0",
"description": "Common components for node-web projects",
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"lint": "eslint . --quiet",
"lint-v": "eslint .",
"build": "echo \"No build step required\"",
"prepare": "husky"
},
"repository": {
"type": "git",
"url": "git+https://github.com/KTH/kth-node-web-common.git"
},
"keywords": [
"kth",
"nodejs",
"web"
],
"author": {
"name": "KTH",
"email": "infosys@kth.se"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/KTH/kth-node-web-common/issues"
},
"homepage": "https://github.com/KTH/kth-node-web-common#readme",
"dependencies": {
"@kth/cortina-block": "^5.1.1",
"@kth/log": "^4.0.7",
"entities": "^2.2.0",
"handlebars": "^4.7.8",
"kth-node-i18n": "^1.0.18",
"kth-node-redis": "^3.3.0",
"locale": "^0.1.0"
},
"devDependencies": {
"@kth/eslint-config-kth": "^3.4.0",
"@types/jest": "^29.5.12",
"eslint": "^8.57.0",
"husky": "^9.0.11",
"jest": "^29.7.0",
"lint-staged": "^15.2.2",
"prettier": "^3.2.5"
},
"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",
"testEnvironment": "node",
"verbose": true
}
}