-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
45 lines (45 loc) · 965 Bytes
/
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
{
"name": "typedoc-plugin-deno",
"version": "1.3.3",
"main": "index.js",
"scripts": {
"build": "tsc",
"prepublishOnly": "npm run build"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"keywords": [
"typedocplugin",
"typedoc",
"deno"
],
"homepage": "https://github.com/denodev/typedoc-plugin-deno",
"repository": {
"type": "git",
"url": "git://github.com/denodev/typedoc-plugin-deno.git"
},
"bugs": {
"url": "https://github.com/denodev/typedoc-plugin-deno/issues"
},
"license": "MIT",
"dependencies": {
"lodash": "^4.17.21",
"semver": "^7.5.2"
},
"peerDependencies": {
"typedoc": "^0.17.4"
},
"devDependencies": {
"@types/lodash": "^4.14.157",
"@types/node": "^14.0.23",
"@types/semver": "^7.3.1",
"husky": "^4.2.5",
"prettier": "^2.0.5",
"pretty-quick": "^2.0.1",
"typedoc": "^0.17.8",
"typescript": "^3.8.3"
}
}