-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 1.97 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
{
"name": "@kth/api-call",
"version": "4.1.0",
"description": "Node.js module to make JSON calls against APIs.",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/KTH/kth-node-api-call"
},
"author": {
"name": "KTH",
"email": "[email protected]",
"url": "https://github.com/KTH"
},
"license": "MIT",
"scripts": {
"test": "jest",
"jest": "jest",
"jest:watch": "jest --watch",
"jest:watch-update": "jest --watch -u",
"build": "./build.sh",
"prepare": "if [ -f ./node_modules/.bin/husky ]; then husky install; fi",
"prettier:all": "prettier --write \"**/*.js\""
},
"keywords": [
"api",
"kth",
"json"
],
"dependencies": {
"form-data": "^4.0.0",
"node-fetch": "^2.6.7",
"url-join": "^4.0.1",
"uuid": "^8.3.2"
},
"devDependencies": {
"@kth/eslint-config-kth": "^3.0.10",
"@moebius/http-graceful-shutdown": "^1.1.0",
"@types/jest": "^29.0.2",
"body-parser": "^1.20.0",
"eslint": "^8.23.1",
"express": "^4.18.1",
"express-form-data": "^2.0.18",
"husky": "^8.0.1",
"jest": "^29.0.3",
"jest-extended": "^4.0.2",
"prettier": "^3.3.3",
"pretty-quick": "^4.0.0",
"redis-mock": "^0.56.3"
},
"// (prettier)": "configuration version 2020-06-15 - might also reside in .prettierrc.json",
"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,
"globalSetup": "./test/mock-api/server.js",
"globalTeardown": "./test/mock-api/teardown.js",
"notifyMode": "failure-change",
"setupFilesAfterEnv": [
"jest-extended/all"
],
"testEnvironment": "node",
"verbose": true,
"coveragePathIgnorePatterns": [
"/node_modules/",
"/test-utils/",
"/test/mock-api/"
]
}
}