-
Notifications
You must be signed in to change notification settings - Fork 122
/
package.json
55 lines (55 loc) · 1.7 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
{
"name": "moleculer-db-addons",
"description": ":gift: Official database addons for Moleculer framework",
"version": "1.0.0",
"scripts": {
"setup": "npm install && lerna bootstrap",
"setup-no-old-node": "npm install && lerna bootstrap --ignore moleculer-db-adapter-mongoose",
"clean": "lerna clean",
"dev": "nodemon dev.js",
"demo": "node dev.js",
"test:unit": "jest --testMatch \"**/unit/**/*.spec.js\" --coverage",
"test:integration": "jest --testMatch \"**/integration/**/*.spec.js\" --runInBand --coverage",
"ci": "jest --watch",
"coverall": "cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
"init": "cd packages && moleculer init addon",
"bench": "node benchmark/index.js",
"deps": "lerna exec --concurrency 1 npm run deps",
"audit": "lerna exec --concurrency 1 npm audit fix",
"release": "lerna publish",
"readme": "node readme-generator.js"
},
"repository": {
"type": "git",
"url": "https://github.com/moleculerjs/moleculer-db.git"
},
"keywords": [],
"author": "MoleculerJS",
"license": "MIT",
"homepage": "https://github.com/moleculerjs/moleculer-db#readme",
"devDependencies": {
"benchmarkify": "^4.0.0",
"coveralls": "^3.1.1",
"eslint": "^8.0.1",
"fakerator": "^0.3.6",
"glob": "^7.2.0",
"jest": "^27.2.5",
"jest-cli": "^27.2.5",
"lerna": "^4.0.0",
"lodash": "^4.17.21",
"markdown-magic": "^2.5.2",
"moleculer": "^0.14.17",
"nodemon": "^2.0.13",
"sequelize": "^6.33.0"
},
"dependencies": {
"moleculer-cli": "^0.8.1"
},
"jest": {
"testEnvironment": "node",
"coveragePathIgnorePatterns": [
"/node_modules/",
"/test/services/"
]
}
}