-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
64 lines (64 loc) · 1.62 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
{
"name": "document-library-microservice",
"version": "0.0.0",
"description": "Convert AWS S3 into a full featured Google Drive as a Service.",
"author": "Authress Developers <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/Authress/document-library-microservice.js.git"
},
"license": "Apache-2.0",
"keywords": [
"AWS",
"S3",
"S3 Explorer",
"S3 Object Explorer",
"Dropbox",
"Google Drive",
"Document repository",
"Document library"
],
"main": "src/index.js",
"files": [
"src",
"dist"
],
"mode": "production",
"dependencies": {
"agentkeepalive": "^4.2.0",
"authress-sdk": "^1.2.14",
"cfn-response": "^1.0.1",
"cookie": "^0.4.1",
"error-object-polyfill": "^1.1.14",
"json-stringify-safe": "^5.0.1",
"lodash": "^4.17.21",
"openapi-factory": "^5.2.17",
"short-uuid": "^4.2.0"
},
"scripts": {
"build": "exit 0",
"start": "nodemon make.js run",
"lint": "eslint --ext .js src make.js",
"setup": "node make.js setup",
"after_build": "node make.js after_build",
"test": "exit 0 || mocha tests/*.test.js"
},
"devDependencies": {
"aws-architect": "^6.6.4",
"aws-sdk": "^2.981.0",
"commander": "^4.0.1",
"eslint": "^7.23.0",
"eslint-config-cimpress-atsquad": "1",
"eslint-loader": "^4.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-mocha": "^7.0.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"fs-extra": "^8.1.0",
"mocha": "^9.2.0",
"nodemon": "^2.0.22"
},
"engines": {
"node": ">=14"
}
}