-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
69 lines (69 loc) · 1.75 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
63
64
65
66
67
68
69
{
"name": "press-ready",
"description": "Make your PDFs compliant with press-ready PDF/X-1a.",
"version": "4.0.3",
"author": "Yasuaki Uechi <y@uechi.io> (https://uechi.io/)",
"scripts": {
"build": "tsc && shx chmod +x lib/cli.js",
"clean": "shx rm -rf *.pdf lib",
"dev": "tsc -w",
"prepublishOnly": "npm run clean && npm run build",
"release": "release-it",
"test": "npm run build && node ./lib/cli.js build -i test/fixture/chrome.pdf"
},
"types": "lib/index.d.ts",
"main": "lib/index.js",
"bin": "lib/cli.js",
"files": [
"lib",
"assets"
],
"dependencies": {
"@types/cli-table": "^0.3.0",
"@types/mustache": "^4.0.1",
"@types/shelljs": "^0.8.6",
"@types/uuid": "^8.3.0",
"@types/yargs": "^16.0.0",
"chalk": "^4.0.0",
"cli-table": "^0.3.1",
"debug": "^4.1.1",
"execa": "^5.0.0",
"mustache": "^4.0.0",
"shelljs": "^0.8.3",
"upath": "^2.0.1",
"uuid": "^8.1.0",
"yargs": "^16.2.0"
},
"devDependencies": {
"@release-it/conventional-changelog": "^2.0.0",
"@types/node": "^15.0.1",
"eslint": "^7.7.0",
"husky": "^6.0.0",
"lint-staged": "^11.0.0",
"prettier": "^2.1.1",
"pretty-quick": "^3.0.0",
"release-it": "^14.0.3",
"shx": "^0.3.2",
"typescript": "^4.0.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged && pretty-quick --staged",
"pre-push": "npm test"
}
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
]
},
"homepage": "https://github.com/vibranthq/press-ready",
"repository": "https://github.com/vibranthq/press-ready.git",
"bugs": "https://github.com/vibranthq/press-ready/issues",
"license": "Apache-2.0",
"keywords": [
"press-ready",
"printing"
]
}