-
Notifications
You must be signed in to change notification settings - Fork 121
/
Copy pathpackage.json
62 lines (62 loc) · 1.67 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
{
"name": "moleculer-db-adapter-sequelize",
"version": "0.2.19",
"description": "SQL adapter (Postgres, MySQL, SQLite & MSSQL) for Moleculer DB service",
"main": "index.js",
"types": "./index.d.ts",
"scripts": {
"dev": "nodemon examples/index.js",
"ci": "jest --watch",
"test": "jest --coverage",
"lint": "eslint --ext=.js src test",
"deps": "npm-check -u",
"readme": "node node_modules/moleculer-docgen/index.js -t README.md src/index.js",
"coverall": "cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js"
},
"keywords": [
"microservice",
"moleculer",
"orm",
"database"
],
"repository": {
"type": "git",
"url": "https://github.com/moleculerjs/moleculer-db.git"
},
"homepage": "https://github.com/moleculerjs/moleculer-db/tree/master/packages/moleculer-db-adapter-sequelize#readme",
"author": "MoleculerJS",
"license": "MIT",
"peerDependencies": {
"moleculer": "^0.12.0 || ^0.13.0 || ^0.14.0 || ^0.15.0",
"sequelize": "^5.9.4 || ^6.7.0"
},
"devDependencies": {
"@types/jest": "^27.0.2",
"benchmarkify": "^3.0.0",
"coveralls": "^3.1.1",
"eslint": "^8.21.0",
"jest": "^27.2.5",
"jest-cli": "^27.2.5",
"lolex": "^6.0.0",
"moleculer": "^0.14.22",
"moleculer-docgen": "^0.3.0",
"mysql2": "^2.3.3",
"nodemon": "^2.0.19",
"npm-check": "^6.0.1",
"pg": "^8.7.3",
"pg-hstore": "^2.3.4",
"sequelize": "^6.35.0",
"sqlite3": "^5.1.7",
"tedious": "^11.0.8"
},
"jest": {
"testEnvironment": "node",
"coveragePathIgnorePatterns": [
"/node_modules/",
"/test/services/"
]
},
"engines": {
"node": ">= 8.x.x"
}
}