-
Notifications
You must be signed in to change notification settings - Fork 34
/
package.json
54 lines (54 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
47
48
49
50
51
52
53
54
{
"name": "moleculer-fake",
"version": "1.0.18",
"description": "Fake data generator by Fakerator",
"main": "index.js",
"scripts": {
"dev": "nodemon examples/index.js",
"ci": "jest --watch",
"test": "jest --coverage",
"lint": "eslint --ext=.js src test",
"deps": "npm-check -u",
"coverall": "cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js"
},
"keywords": [
"microservices",
"microservice",
"moleculer"
],
"repository": {
"type": "git",
"url": "git@github.com:moleculerjs/moleculer-addons.git"
},
"homepage": "https://github.com/moleculerjs/moleculer-addons/tree/master/packages/moleculer-fake#readme",
"author": "MoleculerJS",
"license": "MIT",
"peerDependencies": {
"moleculer": "^0.14.0 || ^0.13.0 || ^0.12.0"
},
"devDependencies": {
"benchmarkify": "2.1.2",
"coveralls": "^3.0.7",
"eslint": "^6.5.1",
"jest": "^24.9.0",
"jest-cli": "^24.9.0",
"lolex": "^5.1.0",
"moleculer": "^0.14.8",
"nodemon": "^1.19.4",
"npm-check": "^5.9.2"
},
"jest": {
"testEnvironment": "node",
"coveragePathIgnorePatterns": [
"/node_modules/",
"/test/services/"
]
},
"engines": {
"node": ">= 8.x.x"
},
"dependencies": {
"fakerator": "^0.3.1",
"lodash": "^4.17.21"
}
}