-
-
Notifications
You must be signed in to change notification settings - Fork 125
/
package.json
42 lines (42 loc) · 1.09 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
{
"name": "node-html-to-image",
"version": "5.0.0",
"description": "A Node.js library that generates images from HTML",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": "[email protected]:frinyvonnick/node-html-to-image.git",
"author": "FRIN Yvonnick <[email protected]>",
"license": "Apache-2.0",
"dependencies": {
"handlebars": "4.7.8",
"puppeteer": "23.2.2",
"puppeteer-cluster": "0.24.0"
},
"scripts": {
"test": "jest",
"lint": "eslint ./src",
"build": "tsc"
},
"files": [
"src",
"types",
"!src/*.spec.js"
],
"devDependencies": {
"@babel/core": "^7.18.6",
"@babel/preset-env": "^7.18.6",
"@babel/preset-typescript": "^7.18.6",
"@types/jest": "^28.1.4",
"@types/node": "^16.11.43",
"@typescript-eslint/eslint-plugin": "^5.30.4",
"@typescript-eslint/parser": "^5.30.4",
"eslint": "^8.19.0",
"gitmoji-changelog": "2.3.0",
"jest": "^28.1.2",
"jest-circus": "^28.1.2",
"puppeteer-core": "23.2.2",
"rimraf": "^3.0.2",
"tesseract.js": "4.1.1",
"typescript": "^4.7.4"
}
}