-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
60 lines (60 loc) · 1.34 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
{
"name": "azf-archive-v2",
"version": "1.0.0",
"description": "Azure function for archive operations in P360 (version 2)",
"main": "index.js",
"scripts": {
"test": "standard && jest",
"test:verbose": "jest --verbose",
"lint:fix": "standard --fix",
"test:offline": "standard && jest",
"refresh": "rm -rf node_modules && rm package-lock.json && npm i",
"start": "func start"
},
"author": {
"name": "Jørgen Thorsnes",
"email": "jorgen.thorsnes@vtfk.no",
"url": "https://github.com/jorgtho"
},
"keywords": [
"archive",
"p360",
"azure",
"functions",
"RPC",
"SIF"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/vtfk/azf-archive.git"
},
"bugs": {
"url": "https://github.com/vtfk/azf-archive/issues"
},
"homepage": "https://github.com/vtfk/azf-archive#readme",
"dependencies": {
"@azure/msal-node": "^1.16.0",
"@vtfk/logger": "^6.0.1",
"axios": "^1.6.2",
"jsonwebtoken": "^9.0.0",
"node-cache": "^5.1.2",
"vtfk-schools-info": "^3.2.0"
},
"devDependencies": {
"@types/jest": "^29.5.0",
"jest": "29.2.2",
"standard": "16.0.4"
},
"standard": {
"env": [
"jest"
]
},
"jest": {
"testMatch": [
"**/test/**/*test.[jt]s?(x)",
"**/?(*.)+.(spec|test).[jt]s?(x)"
]
}
}