-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
80 lines (80 loc) · 2.2 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
{
"name": "@bitcomposer/moleculer-aws-s3",
"version": "0.1.8",
"description": "An aws s3 sdk wrapper as a service for the moleculer framework",
"main": "index.js",
"scripts": {
"dev": "yarn install && nodemon examples/index.js",
"demo": "yarn install && node examples/index.js",
"ci": "yarn install && jest --watch",
"test": "yarn install && jest --coverage --detectOpenHandles",
"lint": "yarn install && eslint --ext=.js --fix src",
"deps": "yarn install && yarn-check -u",
"postdeps": "yarn test",
"coverall": "cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
"docgen": "node ./node_modules/moleculer-docgen src/service.js"
},
"keywords": [
"moleculer",
"microservice"
],
"repository": {
"type": "git",
"url": "https://github.com/bitcomposer/moleculer-aws-s3.git"
},
"author": "Kenneth Shepherd",
"license": "MIT",
"peerDependencies": {
"moleculer": "^0.14.0"
},
"devDependencies": {
"@babel/plugin-transform-modules-commonjs": "^7.14.0",
"benchmarkify": "^2.1.2",
"coveralls": "^3.1.0",
"eslint": "^7.8.1",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-security": "^1.4.0",
"jest": "^26.4.2",
"jest-cli": "^26.4.2",
"moleculer": "^0.14.10",
"moleculer-docgen": "^0.2.1",
"moleculer-repl": "^0.6.4",
"moleculer-web": "^0.10.0-beta2",
"multer": "^1.4.2",
"nats": "1.4.12",
"node-res": "^5.0.1",
"nodemon": "^2.0.4",
"notepack.io": "^2.3.0",
"npm-check": "^5.9.2",
"prettier": "^2.1.1",
"yarn-check": "0.0.3"
},
"jest": {
"testEnvironment": "jest-environment-node",
"transform": {},
"rootDir": "./src",
"roots": [
"../test"
],
"coverageDirectory": "../coverage",
"coveragePathIgnorePatterns": [
"/node_modules/",
"/test/services/"
],
"moduleDirectories": [
"node_modules",
"<rootDir>"
]
},
"engines": {
"node": ">= 10.x.x"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.49.0",
"@aws-sdk/s3-request-presigner": "^3.49.0",
"lodash": "^4.17.21"
}
}