-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
54 lines (54 loc) · 1.16 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-pdf",
"version": "0.1.1",
"description": "Translates Html to PDF",
"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/olivmonnier/moleculer-pdf.git"
},
"author": "moleculer-pdf",
"license": "MIT",
"peerDependencies": {
"moleculer": "^0.13.0"
},
"devDependencies": {
"benchmarkify": "2.1.0",
"coveralls": "3.0.2",
"eslint": "5.9.0",
"jest": "23.6.0",
"jest-cli": "23.6.0",
"moleculer": "^0.13.0",
"nodemon": "1.18.6",
"npm-check": "5.9.0"
},
"jest": {
"testEnvironment": "node",
"rootDir": "./src",
"roots": [
"../test"
],
"coveragePathIgnorePatterns": [
"/node_modules/",
"/test/services/"
]
},
"engines": {
"node": ">= 8.x.x"
},
"dependencies": {
"puppeteer": "^1.20.0"
}
}