forked from artiebits/pdf-to-printer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.38 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
{
"name": "@creatdevsolutions/pdf-to-printer",
"version": "1.5.2",
"description": "A utility to print PDF files from Node.js and Electron",
"license": "MIT",
"author": "Artur Khusaenov <artur.khusaenov@gmail.com>",
"repository": {
"type": "git",
"url": "https://github.com/creatdevsolutions/pdf-to-printer.git"
},
"main": "dist/bundle.js",
"files": [
"dist"
],
"maintainers": [
"Johann Wagner <johann@wagnerdevelopment.de>"
],
"scripts": {
"test": "jest",
"lint": "eslint src __test__ webpack.production.config.js examples",
"build": "webpack --config webpack.production.config.js",
"prepublishOnly": "npm run lint && npm run build"
},
"devDependencies": {
"@babel/cli": "7.10.4",
"@babel/core": "7.9.6",
"@babel/preset-env": "7.10.4",
"babel-eslint": "^10.0.3",
"babel-jest": "26.1.0",
"clean-webpack-plugin": "3.0.0",
"copy-webpack-plugin": "5.1.1",
"eslint": "6.8.0",
"eslint-config-prettier": "6.11.0",
"eslint-plugin-prettier": "3.1.4",
"eslint-plugin-react": "7.20.0",
"jest": "26.1.0",
"prettier": "1.19.1",
"webpack": "4.43.0",
"webpack-cli": "3.3.12"
},
"keywords": [
"pdf",
"printer",
"pdf-printer",
"zebra-printer",
"rollo-printer",
"node.js",
"electron",
"windows",
"macos",
"linux"
],
"dependencies": {
"tmp": "^0.2.1"
}
}