This repository has been archived by the owner on Feb 11, 2021. It is now read-only.
forked from mipatterson/typedoc-plugin-pages
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 2.66 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
73
74
75
76
77
78
79
80
{
"name": "typedoc-plugin-pages",
"version": "0.0.1",
"description": "A TypeDoc plugin that lets you integrate your own pages into the documentation output",
"main": "dist/plugin/index.js",
"files": [
"dist/"
],
"scripts": {
"commit": "git-cz",
"build": "npm run build:code && npm run build:docs",
"build:code": "npm run code:clean && npm run code:build && npm run theme:clean && npm run theme:copy && npm run code:clean:nodemodules && npm run code:copy",
"build:docs": "npm run docs:clean && npm run docs:typedoc",
"clean": "rimraf ./dist",
"docs:clean": "rimraf ./docs",
"docs:typedoc": "typedoc",
"code:build": "tsc",
"code:clean": "rimraf ./dist/plugin",
"code:clean:nodemodules": "rimraf node_modules/typedoc-plugin-pages",
"code:copy": "copyfiles package.json ./dist/**/* node_modules/typedoc-plugin-pages/",
"theme:clean": "rimraf ./dist/theme",
"theme:copy": "copyfiles ./theme/**/* ./dist/theme -u 1",
"test": "npm run test.lint && npm run test.unit && npm run test.integration",
"test.integration": "jest --config ./jest.config.integration.js --runInBand",
"test.lint": "eslint --ext .js,.ts src",
"test.unit": "jest --config ./jest.config.unit.js --runInBand",
"test.unit.watch": "jest --config ./jest.config.unit.js --watchAll"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mipatterson/typedoc-plugin-pages.git"
},
"keywords": [
"typedocplugin",
"typedoc",
"pages",
"plugin"
],
"author": "Mike Patterson",
"license": "MIT",
"bugs": {
"url": "https://github.com/mipatterson/typedoc-plugin-pages/issues"
},
"homepage": "https://github.com/mipatterson/typedoc-plugin-pages#readme",
"devDependencies": {
"@types/jest": "^25.2.1",
"@types/node": "^13.13.5",
"@types/puppeteer": "^2.0.1",
"@typescript-eslint/eslint-plugin": "^2.31.0",
"@typescript-eslint/parser": "^2.31.0",
"commitizen": "^4.1.2",
"connect": "^3.7.0",
"copyfiles": "^2.2.0",
"cz-conventional-changelog": "^3.2.0",
"eslint": "^6.8.0",
"fs-extra": "^9.0.0",
"jest": "^25.5.4",
"jest-html-reporters": "^1.2.1",
"jsdom": "^16.2.2",
"merge": "^1.2.1",
"puppeteer": "^3.0.3",
"rimraf": "^3.0.2",
"semantic-release": "^17.0.7",
"serve-static": "^1.14.1",
"ts-jest": "^25.5.0",
"typedoc": "^0.17.6",
"typedoc-plugin-external-module-name": "^3.1.0",
"typemoq": "^2.1.0",
"typescript": "^4.0.5"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"dependencies": {
"compare-versions": "^3.6.0",
"typedoc-default-themes": "^0.10.1"
}
}