-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.15 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
{
"name": "typedoc-plugin-external-module-name",
"version": "3.0.0",
"description": "Specify the Typedoc Module of a file using @module annotation",
"main": "index.js",
"scripts": {
"build": "tsc",
"test": "./test/useTypedocVersion.js && ./test/banner.js && test_downstream_projects",
"release": "release",
"prepublishOnly": "npm run build"
},
"keywords": [
"typedocplugin",
"typedoc"
],
"repository": {
"type": "git",
"url": "https://github.com/christopherthielen/typedoc-plugin-external-module-name"
},
"author": "Chris Thielen",
"license": "MIT",
"dependencies": {
"lodash": "^4.1.2",
"semver": "^7.1.1"
},
"peerDependencies": {
"typedoc": ">=0.7.0 <0.15.0"
},
"devDependencies": {
"@types/handlebars": "^4.0.37",
"@types/lodash": "^4.1.6",
"@types/node": "^13.1.6",
"@types/semver": "^6.2.0",
"@uirouter/publish-scripts": "^2.3.24",
"husky": "^2.2.0",
"prettier": "^1.13.7",
"pretty-quick": "^1.4.1",
"typedoc": "0.16.4"
},
"resolutions": {
"typedoc": "0.16.4"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
}
}