-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.58 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
{
"name": "@fliegwerk/fliegdoc-dita-theme",
"version": "0.0.6",
"description": "A DITA API Reference generator theme for fliegdoc",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"test": "npm run jest && npm run test:build",
"test:build": "npm run build && fliegdoc build && npm run build:docs",
"jest": "jest",
"style": "prettier --write package.json '**/*{.ts,.tsx,.js,.jsx,.json,.html,.css,.scss,.sass,.yaml,.yml,.md}'",
"style:ci": "prettier --list-different package.json '**/*{.ts,.tsx,.js,.jsx,.json,.html,.css,.scss,.sass,.yaml,.yml,.md}'",
"build:docs": "dita -i docs/index.ditamap -f pdf2",
"prepare": "npm run build",
"release": "standard-version"
},
"repository": {
"url": "git+https://github.com/fliegwerk/fliegdoc-dita-theme.git",
"type": "git"
},
"bugs": {
"url": "https://github.com/fliegwerk/fliegdoc-dita-theme/issues"
},
"files": [
"views",
"dist",
"README.md"
],
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"keywords": [
"fliegdoc",
"fliegdoc-theme",
"dita"
],
"author": {
"url": "https://github.com/pklaschka",
"name": "Pablo Klaschka",
"email": "contact@pabloklaschka.de"
},
"license": "MIT",
"devDependencies": {
"@types/jest": "^27.0.1",
"@types/node": "^16.7.10",
"fliegdoc": "^0.5.1",
"husky": "^7.0.2",
"jest": "^26.6.3",
"prettier": "^2.2.1",
"pretty-quick": "^3.1.0",
"standard-version": "^9.1.0",
"ts-jest": "^26.4.4",
"typescript": "^4.1.3"
},
"dependencies": {
"eta": "^1.12.1"
},
"peerDependencies": {
"fliegdoc": ">=0.4.5"
}
}