-
Notifications
You must be signed in to change notification settings - Fork 34
/
package.json
46 lines (46 loc) · 1.3 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
{
"name": "moleculer-addons",
"description": ":gift: Official addons for Moleculer framework",
"version": "1.0.0",
"scripts": {
"setup": "npm install && lerna bootstrap",
"clean": "lerna clean",
"dev": "nodemon dev.js",
"demo": "node dev.js",
"test": "jest --coverage",
"ci": "jest --watch",
"coverall": "cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
"init": "cd packages && moleculer init addon",
"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": "git+https://github.com/moleculerjs/moleculer-addons.git"
},
"keywords": [],
"author": "MoleculerJS",
"license": "MIT",
"homepage": "https://github.com/moleculerjs/moleculer-addons#readme",
"devDependencies": {
"coveralls": "^3.1.1",
"eslint": "^8.24.0",
"glob": "^7.1.4",
"jest": "^29.1.2",
"jest-cli": "^29.1.2",
"lerna": "^3.18.1",
"lodash": "^4.17.15",
"markdown-magic": "0.1.25",
"moleculer-cli": "^0.8.0",
"nodemon": "^2.0.20"
},
"jest": {
"testEnvironment": "node",
"coveragePathIgnorePatterns": [
"/node_modules/",
"/test/services/"
]
}
}