-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
75 lines (75 loc) · 1.95 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
{
"name": "moleculer-sharp",
"version": "1.0.1",
"description": "A sharp wrapper as a service for the moleculer framework",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/designtesbrot/moleculer-sharp"
},
"author": "caspar.bauer0@gmail.com",
"license": "MIT",
"scripts": {
"dev": "yarn install && nodemon -L examples/index.js",
"demo-api": "yarn install && nodemon -L examples/api.service.js",
"demo-sharp": "yarn install && nodemon -L examples/sharp.service.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": [
"sharp",
"image-processing",
"microservices",
"microservice",
"moleculer"
],
"devDependencies": {
"coveralls": "3.0.2",
"eslint": "5.10.0",
"jest": "23.6.0",
"jest-cli": "23.6.0",
"moleculer": "^0.13.3",
"moleculer-docgen": "^0.2.1",
"moleculer-repl": "^0.5.2",
"moleculer-web": "^0.8.2",
"multer": "^1.4.1",
"nats": "^1.0.1",
"node-res": "^5.0.1",
"nodemon": "1.18.9",
"safe-buffer": "^5.2.1",
"yarn-check": "0.0.3"
},
"peerDependencies": {
"moleculer": ">= 0.13.0"
},
"dependencies": {
"node-fetch": "2.6.1",
"ramda": "0.27.1",
"ramda-adjunct": "2.31.1",
"sharp": "^0.27.2"
},
"engines": {
"node": ">= 10.x.x"
},
"jest": {
"coverageDirectory": "../coverage",
"testEnvironment": "node",
"rootDir": "./src",
"roots": [
"../test"
],
"coveragePathIgnorePatterns": [
"/node_modules/",
"/test/services/"
],
"moduleDirectories": [
"node_modules",
"<rootDir>"
]
}
}