-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 908 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 908 Bytes
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
{
"name": "pdfmin",
"version": "1.0.0",
"main": "dist/index.min.js",
"types": "dist/index.d.ts",
"files": [
"/dist"
],
"bin": {
"pdfmin": "dist/index.min.js"
},
"scripts": {
"build": "webpack --mode production",
"watch": "webpack --mode development --watch --progress",
"test": "jest --coverage"
},
"description": "A CLI tool to compress PDF using GhostScript",
"repository": "https://github.com/Treast/node-pdfmin",
"author": "Vincent Riva <vincent.riva@outlook.fr>",
"license": "MIT",
"devDependencies": {
"@types/jest": "^29.2.4",
"@types/node": "^18.11.14",
"coveralls": "^3.1.1",
"jest": "^29.3.1",
"ts-jest": "^29.0.3",
"ts-loader": "^9.4.2",
"typescript": "^4.9.4",
"uglifyjs-webpack-plugin": "^2.2.0",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1"
},
"dependencies": {
"command-exists": "^1.2.9"
}
}