forked from artiebits/pdf-to-printer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.35 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
{
"name": "pdf-to-printer",
"version": "2.0.0",
"description": "A utility to print PDF files from Node.js and Electron",
"license": "MIT",
"author": "artiebits <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/artiebits/pdf-to-printer.git"
},
"main": "dist/bundle.js",
"types": "dist/types.d.ts",
"files": [
"dist"
],
"scripts": {
"test": "jest",
"lint": "prettier --write 'src/**/*.{js,ts,json,md}' 'webpack.production.config.js' 'examples'",
"build": "webpack --config webpack.production.config.js",
"prepublishOnly": "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.12.1",
"@babel/core": "7.12.3",
"@babel/preset-env": "7.10.4",
"babel-jest": "26.5.2",
"clean-webpack-plugin": "3.0.0",
"copy-webpack-plugin": "^5.1.2",
"husky": "^4.3.0",
"jest": "26.5.3",
"lint-staged": "^10.4.2",
"prettier": "2.1.2",
"webpack": "4.43.0",
"webpack-cli": "3.3.12"
},
"keywords": [
"pdf",
"printer",
"pdf-printer",
"zebra-printer",
"rollo-printer",
"node.js",
"electron",
"windows",
"macos",
"linux"
]
}