This repository has been archived by the owner on Jan 16, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 1.66 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
{
"name": "azf-archive",
"version": "3.17.14",
"description": "Azure function for archive operations in P360",
"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": "Rune Moskvil Lyngås",
"email": "[email protected]",
"url": "https://github.com/runely"
},
"contributors": [
{
"name": "Jonas Enge",
"email": "[email protected]",
"url": "https://github.com/maccyber"
},
{
"name": "Jørgen Thorsnes",
"email": "[email protected]",
"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.15.0",
"@vtfk/e18": "2.1.5",
"@vtfk/logger": "4.3.2",
"@vtfk/p360": "^1.4.1",
"axios": "^0.27.0",
"jsonwebtoken": "9.0.2",
"node-cache": "^5.1.2",
"vtfk-schools-info": "3.2.0",
"xml2js": "^0.5.0"
},
"devDependencies": {
"jest": "^29.5.0",
"standard": "^17.1.0"
},
"standard": {
"env": [
"jest"
]
},
"jest": {
"testMatch": [
"**/test/**/*test.[jt]s?(x)",
"**/?(*.)+.(spec|test).[jt]s?(x)"
]
}
}