This repository has been archived by the owner on Mar 22, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 135
/
package.json
62 lines (62 loc) · 1.42 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
58
59
60
61
62
{
"name": "pdf-to-printer",
"version": "5.6.0",
"description": "A utility for printing PDFs and images from Node.js and Electron.",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/artiebits/pdf-to-printer.git"
},
"main": "dist/bundle.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"test": "jest",
"lint": "prettier --write .",
"build": "webpack --config webpack.production.config.js",
"prepare": "npm run lint && npm run test && npm run build"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{js,ts,json,md}": [
"prettier --write"
]
},
"devDependencies": {
"@babel/cli": "7.21.0",
"@babel/core": "7.20.12",
"@babel/preset-env": "7.20.2",
"@babel/preset-typescript": "^7.15.0",
"@types/jest": "^29.2.6",
"@types/node": "^18.6.3",
"babel-jest": "^29.2.2",
"clean-webpack-plugin": "4.0.0",
"copy-webpack-plugin": "^11.0.0",
"husky": "^8.0.3",
"jest": "^29.5.0",
"jest-mock": "^29.1.2",
"lint-staged": "^13.0.0",
"prettier": "2.8.4",
"ts-jest": "^29.0.5",
"ts-loader": "^9.2.6",
"typescript": "^4.9.4",
"webpack": "^5.58.2",
"webpack-cli": "^5.0.0"
},
"keywords": [
"pdf",
"printer",
"pdf-printer",
"zebra-printer",
"rollo-printer",
"node.js",
"electron",
"windows"
]
}