forked from moleculerjs/moleculer-metrics
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.28 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
{
"name": "moleculer-metrics-addons",
"description": "Official monitoring & metrics 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",
"release": "lerna publish",
"readme": "node readme-generator.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/moleculerjs/moleculer-metrics.git"
},
"keywords": [],
"author": "MoleculerJS",
"license": "MIT",
"homepage": "https://github.com/moleculerjs/moleculer-metrics#readme",
"devDependencies": {
"coveralls": "3.0.0",
"eslint": "4.8.0",
"glob": "7.1.2",
"jest": "20.0.4",
"jest-cli": "20.0.4",
"lerna": "2.3.1",
"lodash": "4.17.4",
"markdown-magic": "0.1.19",
"nodemon": "1.12.1"
},
"dependencies": {
"moleculer-cli": "0.5.7"
},
"jest": {
"testEnvironment": "node",
"coveragePathIgnorePatterns": [
"/node_modules/",
"/test/services/"
]
}
}