-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.37 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
{
"name": "moleculer-jest",
"version": "0.1.0",
"description": "Jest helper for testing MoleculerJS services",
"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": [
"moleculer",
"microservice"
],
"repository": {
"type": "git",
"url": "https://github.com/adam-mccormick/moleculer-jest.git"
},
"author": "Adam McCormick",
"license": "MIT",
"peerDependencies": {
"moleculer": "^0.14.0"
},
"devDependencies": {
"benchmarkify": "^2.1.2",
"coveralls": "^3.1.0",
"eslint": "^7.8.1",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-security": "^1.4.0",
"jest": "^26.4.2",
"jest-cli": "^26.4.2",
"moleculer": "^0.14.10",
"nodemon": "^2.0.4",
"npm-check": "^5.9.2",
"prettier": "^2.1.1"
},
"jest": {
"testEnvironment": "node",
"rootDir": "./src",
"roots": [
"../test"
],
"coverageDirectory": "../coverage",
"coveragePathIgnorePatterns": [
"/node_modules/"
]
},
"engines": {
"node": ">= 10.x.x"
}
}