-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 1.74 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
{
"name": "@kth/kth-node-api-common",
"version": "2.0.4",
"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",
"scripts": {
"lint": "eslint \"**/*.js\" --quiet",
"lint-v": "eslint \"**/*.js\"",
"test": "jest",
"test:watch": "jest --watch",
"test:watch-update": "jest --watch -u",
"test:coverage": "jest --collectCoverage",
"build": "",
"prepare": "bash -c 'if [ -f ./node_modules/.bin/husky ]; then husky install; fi'"
},
"dependencies": {
"yup": "^0.32.11"
},
"devDependencies": {
"@kth/eslint-config-kth": "^3.0.10",
"@types/jest": "^29.0.2",
"eslint": "^8.23.1",
"husky": "^8.0.1",
"jest": "^29.0.3",
"jest-extended": "^4.0.2",
"prettier": "^3.3.3",
"pretty-quick": "^4.0.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/all"
],
"testEnvironment": "node",
"verbose": true
}
}