-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 2.12 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
65
66
67
68
69
70
71
72
{
"private": false,
"author": "raldone01",
"description": "Adds README.adoc support to typedoc.",
"homepage": "feather.ink",
"license": "GPL-3.0-or-later",
"publishConfig": [
{
"registry": "https://registry.npmjs.org/"
},
{
"registry": "https://npm.pkg.github.com/"
}
],
"repository": {
"type": "git",
"url": "https://github.com/ink-feather-org/typedoc-plugin-asciidoctor"
},
"name": "@ink-feather-org/typedoc-plugin-asciidoctor",
"version": "1.0.6",
"main": "dist/src/index.js",
"module": "dist/src/index.js",
"sideEffects": false,
"types": "dist/src/index.d.ts",
"keywords": [
"typedoc",
"asciidoctor",
"adoc",
"typedoc-plugin",
"typedocplugin"
],
"scripts": {
"prepublishOnly": "pnpm run lint && pnpm run build && pnpm run docs && npm-multi-publish",
"postpublish": "npm-multi-publish",
"check-types": "tsc --noEmit",
"lint": "eslint . --ext .ts,.js",
"lint:fix": "eslint . --ext .ts,.js --fix",
"test": "cd test && pnpm run test",
"test:lint": "cd test && pnpm run lint",
"test:lint:fix": "cd test && pnpm run lint:fix",
"build:declarations": "tsc --declaration --emitDeclarationOnly",
"build:bundle": "tsc",
"build": "pnpm run build:bundle && pnpm run build:declarations",
"docs": "pnpm typedoc",
"clean": "shx rm -rf dist docs"
},
"devDependencies": {
"@ink-feather-org/eslint-config-shareable": "^1.0.9",
"@typescript-eslint/eslint-plugin": "^5.17.0",
"@typescript-eslint/parser": "^5.17.0",
"eslint": "^8.12.0",
"eslint-config-airbnb-typescript": "^16.2.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.0.0",
"npm-multi-publish": "^2.2.0",
"shx": "^0.3.4",
"typedoc": "^0.22.13",
"typescript": "^4.6.3",
"@types/node": "^17.0.23"
},
"dependencies": {
"tslib": "^2.3.1",
"@ink-feather-org/ts-utils": "^1.0.11",
"@ink-feather-org/asciidoctor-shiki": "^1.0.0",
"@babel/runtime-corejs3": "^7.17.8",
"@asciidoctor/core": "^2.2.6"
},
"peerDependencies": {
"typedoc": "^0.22.13"
}
}