-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.51 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": "dita-ot-helper",
"version": "0.13.1",
"description": "A little helper for automating some of the more tedious tasks of automation with the DITA Open Toolkit",
"repository": "https://github.com/fliegwerk/dita-ot-helper.git",
"bugs": "https://github.com/fliegwerk/dita-ot-helper/issues",
"homepage": "https://github.com/fliegwerk/dita-ot-helper#README",
"bin": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint .",
"compile-readme": "node meta-tools/compile-readme.js",
"prepublishOnly": "npm run-script compile-readme",
"release": "standard-version"
},
"standard-version": {
"scripts": {
"postchangelog": "npm run-script compile-readme && git add README.md"
}
},
"keywords": [
"dita",
"dita-ot",
"automation",
"cli",
"pdf"
],
"author": "fliegwerk",
"contributors": [
{
"email": "[email protected]",
"name": "Pablo Klaschka",
"url": "https://github.com/pklaschka"
}
],
"license": "MIT",
"dependencies": {
"chalk": "4.1.2",
"commander": "9.5.0",
"cross-zip": "4.0.1",
"glob": "7.2.3",
"node-fetch": "3.3.2",
"shell-quote": "1.8.2",
"shelljs": "0.8.5"
},
"devDependencies": {
"@types/chalk": "2.2.4",
"@types/commander": "2.12.5",
"@types/shelljs": "0.8.15",
"eslint": "8.57.1",
"eslint-config-prettier": "8.10.0",
"eslint-plugin-prettier": "4.2.1",
"prettier": "2.8.8",
"standard-version": "9.5.0"
}
}