forked from moleculerjs/database
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
91 lines (91 loc) · 2.75 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
82
83
84
85
86
87
88
89
90
91
{
"name": "@moleculer/database",
"version": "0.1.1",
"description": "Advanced Database Access Service for Moleculer microservices framework",
"main": "index.js",
"scripts": {
"dev": "nodemon examples/index.js",
"ci:unit": "jest --testMatch \"**/unit/**/*.spec.js\" --watch",
"ci:integration": "jest --testMatch \"**/integration/**/*.spec.js\" --runInBand --watch",
"ci:leak": "jest --testMatch \"**/leak-detection/**/index.spec.js\" --runInBand --watch",
"test:unit": "jest --testMatch \"**/unit/**/*.spec.js\"",
"test:integration": "jest --testMatch \"**/integration/**/*.spec.js\" --runInBand --coverage",
"test:leak": "jest --testMatch \"**/leak-detection/**/*.spec.js\" --runInBand",
"test": "jest --testMatch \"**/*.spec.js\" --runInBand --coverage",
"lint": "eslint --ext=.js src examples test",
"bench": "node benchmark/index.js",
"bench:watch": "nodemon benchmark/index.js",
"deps": "npm-check -u && npm audit fix",
"ci-update-deps": "ncu -u --target minor",
"coverall": "cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
"release": "npm publish --access public && git push --tags"
},
"keywords": [
"moleculer",
"microservice"
],
"repository": {
"type": "git",
"url": "https://github.com/moleculerjs/database.git"
},
"author": "MoleculerJS",
"license": "MIT",
"peerDependencies": {
"moleculer": "^0.14.12"
},
"devDependencies": {
"@icebob/node-memwatch": "^2.1.0",
"@vscode/sqlite3": "^5.1.2",
"axios": "^0.27.2",
"benchmarkify": "^3.0.0",
"coveralls": "^3.1.1",
"eslint": "^8.37.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-security": "^1.7.1",
"fakerator": "^0.3.6",
"globby": "^13.1.3",
"jest": "^29.5.0",
"jest-cli": "^29.5.0",
"kleur": "^4.1.5",
"knex": "^2.4.2",
"moleculer": "^0.14.29",
"moleculer-repl": "^0.7.3",
"moleculer-web": "^0.10.5",
"mongodb": "^4.14.0",
"mongoose": "^6.10.4",
"mysql": "^2.18.1",
"mysql2": "^2.3.3",
"nedb": "^1.8.0",
"nodemon": "^2.0.22",
"npm-check-updates": "^16.9.0",
"pg": "^8.10.0",
"prettier": "^2.8.7",
"qs": "^6.11.1",
"sequelize": "^6.30.0",
"tedious": "^15.1.3"
},
"jest": {
"testEnvironment": "node",
"rootDir": "./src",
"roots": [
"../test"
],
"coverageDirectory": "../coverage",
"coveragePathIgnorePatterns": [
"/node_modules/",
"/test/services/"
]
},
"engines": {
"node": ">= 14.x.x"
},
"dependencies": {
"fastest-validator": "^1.16.0",
"lodash": "^4.17.21",
"semver": "^7.3.8",
"sqlite3": "^5.1.6"
}
}