-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
50 lines (50 loc) · 1.33 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
{
"name": "unix-print",
"version": "1.3.2",
"description": "Utility for Unix-like operating systems to print PDF files from Node.js and Electron",
"license": "MIT",
"main": "build/index.js",
"types": "build/index.d.ts",
"files": [
"build"
],
"repository": {
"type": "git",
"url": "https://github.com/artiebits/unix-print.git"
},
"scripts": {
"test": "jest",
"build": "npm run build:clean && npm run build:esbuild && npm run build:declarations",
"build:clean": "rimraf build",
"build:esbuild": "esbuild ./src --bundle --platform=node --outfile=build/index.js",
"build:declarations": "tsc -p tsconfig.dist.json --emitDeclarationOnly --outDir build",
"prettier-check": "prettier -c ./",
"prepare": "npm run test && npm run build"
},
"devDependencies": {
"@babel/core": "^7.15.5",
"@babel/preset-env": "^7.15.6",
"@babel/preset-typescript": "^7.15.0",
"@types/jest": "^27.0.2",
"@types/node": "^16.9.1",
"babel-jest": "^27.1.1",
"esbuild": "^0.12.26",
"husky": "^8.0.0",
"jest": "^27.1.1",
"prettier": "^2.4.0",
"pretty-quick": "^3.1.1",
"rimraf": "^3.0.2",
"typescript": "^4.4.4"
},
"keywords": [
"pdf",
"printer",
"pdf-printer",
"zebra-printer",
"rollo-printer",
"node.js",
"electron",
"macos",
"linux"
]
}