-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
60 lines (60 loc) · 1.41 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
{
"name": "moleculer-db-adapter-macrometa",
"version": "0.1.0",
"description": "MacroMeta.io DB adapter for Moleculer DB service.",
"main": "index.js",
"scripts": {
"dev": "nodemon examples/index.js",
"ci": "jest --watch",
"test": "jest --coverage",
"lint": "eslint --ext=.js src test",
"deps": "npm-check -u",
"coverall": "cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js"
},
"keywords": [
"moleculer",
"microservice"
],
"repository": {
"type": "git",
"url": "https://github.com/moleculerjs/moleculer-db-adapter-macrometa.git"
},
"author": "MoleculerJS",
"license": "MIT",
"peerDependencies": {
"moleculer": "^0.13.0 || ^0.14.0"
},
"dependencies": {
"jsc8": "^0.14.3"
},
"devDependencies": {
"@types/jest": "^24.0.23",
"benchmarkify": "^2.1.2",
"coveralls": "^3.0.9",
"eslint": "^6.7.2",
"jest": "^24.9.0",
"jest-cli": "^24.9.0",
"lolex": "^5.1.1",
"moleculer": "^0.13.0",
"moleculer-db": "^0.8.4",
"moleculer-docgen": "^0.2.2",
"moleculer-repl": "^0.6.1",
"nodemon": "^2.0.1",
"npm-check": "5.9.0"
},
"jest": {
"testEnvironment": "node",
"rootDir": "./src",
"roots": [
"../test"
],
"coverageDirectory": "../coverage",
"coveragePathIgnorePatterns": [
"/node_modules/",
"/test/services/"
]
},
"engines": {
"node": ">= 8.x.x"
}
}