-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.54 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
{
"name": "typedoc-light-theme",
"version": "1.1.0",
"description": "TypeDoc theme that adds some useful options (header links, custom style and script, ability to create files etc)",
"main": "index.js",
"dependencies": {
"handlebars": "^4.7.6",
"makef": "^1.1.0"
},
"devDependencies": {
"@jsdevtools/version-bump-prompt": "^6.1.0",
"eslint": "^7.15.0",
"eslint-config-guard": "^2.0.1",
"eslint-plugin-node": "^11.1.0",
"husky": "^4.3.5"
},
"scripts": {
"lint": "eslint --cache --max-warnings 0 *.js",
"lint-error": "eslint --cache index.js \"src/**/*.js\"",
"lint-all": "eslint --max-warnings 0 index.js \"src/**/*.js\"",
"lint-all-error": "eslint index.js \"src/**/*.js\"",
"check": "npm run lint",
"release": "bump patch --commit --tag --all --push",
"release-minor": "bump minor --commit --tag --all --push",
"release-major": "bump major --commit --tag --all --push"
},
"repository": {
"type": "git",
"url": "git://github.com/gamtiq/typedoc-light-theme.git"
},
"keywords": [
"typedoc",
"custom",
"theme",
"typedoc-theme",
"typescript",
"documentation",
"generator",
"typedocplugin",
"extend",
"customize",
"customization",
"style",
"script",
"create",
"file"
],
"author": "Denis Sikuler",
"license": "MIT",
"bugs": {
"url": "https://github.com/gamtiq/typedoc-light-theme/issues"
},
"homepage": "https://github.com/gamtiq/typedoc-light-theme#readme",
"peerDependencies": {
"typedoc": ">=0.17.0"
}
}