-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
81 lines (81 loc) · 2.35 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
77
78
79
80
81
{
"name": "armadietto",
"description": "Node.js remoteStorage server",
"homepage": "https://github.com/remotestorage/armadietto",
"keywords": [
"remoteStorage",
"webfinger",
"oauth",
"webdav",
"remotestorage.js",
"my own storage",
"privacy",
"decentralization"
],
"license": "MIT",
"version": "0.6.0",
"engines": {
"node": ">=20.0"
},
"bin": {
"armadietto": "./bin/armadietto.js"
},
"main": "./lib/armadietto.js",
"dependencies": {
"@aws-sdk/client-s3": "^3.523.0",
"@aws-sdk/lib-storage": "^3.525.1",
"@simplewebauthn/server": "^9.0.3",
"@smithy/node-http-handler": "^2.5.0",
"argparse": "^2.0.1",
"cors": "^2.8.5",
"ejs": "^3.1.9",
"express": "^4.18.2",
"express-jwt": "^8.4.1",
"express-session": "^1.18.0",
"helmet": "^7.1.0",
"http-errors": "^2.0.0",
"jsonwebtoken": "^9.0.2",
"lockfile": "^1.0.4",
"memorystore": "^1.6.7",
"mkdirp": "^1.0.4",
"node-mocks-http": "^1.14.1",
"proquint": "^0.0.1",
"rate-limiter-flexible": "^5.0.3",
"robots.txt": "^1.1.0",
"ua-parser-js": "^1.0.38",
"winston": "^3.11.0",
"yaml": "^2.4.0"
},
"devDependencies": {
"bdd-lazy-var": "^2.6.1",
"chai": "^4.4.1",
"chai-as-promised": "^7.1.1",
"chai-http": "^4.4.0",
"chai-spies": "^1.1.0",
"eslint": "^8.56.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.1.1",
"mocha": "^10.3.0",
"nodemon": "^3.0.3",
"rimraf": "^3.0.2"
},
"scripts": {
"dev": "nodemon --inspect -w ./lib ./bin/armadietto.js -c ./bin/dev-conf.json",
"modular": "PORT=8001 node --watch --trace-warnings ./bin/www -c ./bin/dev-conf.json",
"test": "mocha -u bdd-lazy-var/getter spec/runner.js",
"test-watch": "mocha --watch -u bdd-lazy-var/getter spec/runner.js",
"test-s3-play-min-io": "mocha spec/store_handlers/S3_store_handler.spec.js",
"lint": "eslint --max-warnings=0 \"lib/**/*.js\" \"bin/**/*.js\" \"spec/**/*.js\"",
"lint:fix": "eslint --fix \"lib/**/*.js\" \"bin/**/*.js\" \"spec/**/*.js\""
},
"repository": {
"type": "git",
"url": "git://github.com/remotestorage/armadietto.git"
},
"bugs": {
"url": "https://github.com/remotestorage/armadietto/issues"
}
}