-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
74 lines (74 loc) · 2.08 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
70
71
72
73
74
{
"name": "@zsevic/orbit-pdf",
"description": "CLI tool for converting Orbit HTML resume to PDF file",
"version": "2.0.8",
"bin": {
"orbit-pdf": "./bin/run.js"
},
"bugs": "https://github.com/zsevic/orbit-pdf/issues",
"devDependencies": {
"@oclif/prettier-config": "^0.2.1",
"@oclif/test": "^3.0.2",
"@types/chai": "^4.3.9",
"@types/mocha": "^10.0.3",
"@types/node": "^20.8.7",
"@types/sinon": "^10.0.20",
"@types/validator": "^13.11.5",
"chai": "^4.3.10",
"eslint": "^8.52.0",
"eslint-config-oclif": "^5.0.0",
"eslint-config-oclif-typescript": "^3.0.8",
"eslint-config-prettier": "^9.0.0",
"mocha": "^10.2.0",
"oclif": "^4.0.3",
"shx": "^0.3.4",
"sinon": "^17.0.0",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
},
"dependencies": {
"@oclif/core": "^3.5.0",
"@oclif/plugin-help": "^6.0.4",
"@oclif/plugin-plugins": "^3.9.3",
"puppeteer": "^21.4.0",
"validator": "^13.11.0"
},
"engines": {
"node": "20.x"
},
"files": [
"/bin",
"/dist",
"/npm-shrinkwrap.json",
"/oclif.manifest.json"
],
"homepage": "https://github.com/zsevic/orbit-pdf",
"keywords": [
"oclif"
],
"license": "MIT",
"main": "dist/index.js",
"oclif": {
"bin": "orbit-pdf",
"dirname": "orbit-pdf",
"commands": "./dist/commands",
"plugins": [
"@oclif/plugin-help",
"@oclif/plugin-plugins"
]
},
"scripts": {
"build": "npm run clean && tsc",
"clean": "shx rm -rf dist tsconfig.tsbuildinfo",
"lint": "eslint . --ext .ts",
"lint:fix": "npm run lint -- --fix",
"prepack": "npm run build && oclif manifest && oclif readme",
"postpack": "shx rm -f oclif.manifest.json",
"postpublish": "npm run publish-npm",
"publish-npm": "npm publish --access public --ignore-scripts --@zsevic:registry='https://registry.npmjs.org'",
"test": "mocha --forbid-only \"test/**/*.test.ts\"",
"posttest": "npm run lint:fix",
"update-readme": "oclif readme && git add README.md && git commit -m \"Update Readme\"",
"postversion": "npm run update-readme"
}
}