-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.69 KB
/
Copy pathpackage.json
File metadata and controls
73 lines (73 loc) · 1.69 KB
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
{
"name": "@kth/kth-node-api-common",
"version": "3.0.0",
"description": "Generic utilities for the API-backends of web-applications at KTH Stockholm",
"automaticPublish": "true",
"main": "index.js",
"files": [
"index.js",
"lib"
],
"repository": {
"type": "git",
"url": "git+https://github.com/KTH/kth-node-api-common.git"
},
"keywords": [
"kth",
"api",
"node"
],
"author": {
"name": "KTH",
"email": "infosys@kth.se",
"url": "https://github.com/KTH"
},
"homepage": "https://github.com/KTH/kth-node-api-common#readme",
"bugs": {
"url": "https://github.com/KTH/kth-node-api-common/issues"
},
"license": "MIT",
"engines": {
"node": ">=24"
},
"scripts": {
"lint": "eslint --quiet",
"lint-v": "eslint",
"test": "jest",
"test:watch": "jest --watch",
"test:watch-update": "jest --watch -u",
"test:coverage": "jest --collectCoverage",
"build": "",
"prepare": "husky"
},
"dependencies": {
"yup": "^1.7.1"
},
"devDependencies": {
"@kth/eslint-config-kth": "^4.1.0",
"@types/jest": "^30.0.0",
"eslint": "^9.39.4",
"husky": "^9.1.7",
"jest": "^30.4.2",
"jest-extended": "^7.0.0",
"lint-staged": "^17.0.8",
"prettier": "^3.9.4"
},
"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/all"
],
"testEnvironment": "node",
"verbose": true
}
}