-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
46 lines (46 loc) · 1.24 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": "breezy-pdf-lite",
"version": "0.0.1",
"description": "Render HTML to a PDF with Google Chrome, via an HTTP request",
"main": "index.js",
"author": "Daniel Westendorf",
"license": "GPL-3.0-or-later",
"dependencies": {
"body-parser": "^1.20.2",
"chrome-launcher": "^0.15.2",
"debug": "^4.3.1",
"express": "^4.18.2",
"html-pdf-chrome": "^0.8.4",
"jsdom": "^22.1.0"
},
"devDependencies": {
"coveralls": "^3.1.0",
"eslint": "^8.42.0",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-standard": "^5.0.0",
"istanbul": "^0.4.5",
"node-fetch": "^3.3.1",
"nyc": "^15.1.0",
"teenytest": "^6.0.5",
"testdouble": "^3.18.0"
},
"scripts": {
"test": "teenytest 'test/**/*-test.js' --helper test/helper.js",
"lint": "./node_modules/.bin/eslint lib/* test/* *.js",
"testncov": "nyc --reporter=lcov --reporter=text teenytest 'test/**/*-test.js' --helper test/helper.js && ./node_modules/.bin/eslint *.js, **/**.js"
},
"teenytest": {
"timeout": 10000
},
"nyc": {
"exclude": [
"index.js"
],
"include": [
"lib/**/*.js"
]
}
}