-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
99 lines (99 loc) · 3.2 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "typedoc-theme-yaf",
"version": "0.0.5",
"description": "A fresh, opinionated and standalone front-end documentation application consuming Typedoc generated data.",
"keywords": [
"typedoc",
"typedoc-theme",
"typescript",
"documentation",
"theme"
],
"main": "./src/index",
"workspaces": [
"tsconfig"
],
"scripts": {
"test": "prettier -c . && npm run test:backend && npm run test:frontend",
"test:backend": "npm run build && tsc --project ./test/backend.tsconfig.json && nyc mocha",
"test:frontend": "npm run build && tsc --project ./test/frontend.tsconfig.json && typedoc --options test/typedoc.json && wtr",
"test:frontend:update": "npm run build && tsc --project ./test/frontend.tsconfig.json && typedoc --options test/typedoc.json && wtr --update-visual-baseline",
"docs": "typedoc",
"build": "tsc --build && node ./scripts/build.js && npm run build:css && npm run build:postcss",
"build:watch": "npm run build && npm run build:watch:cssAndPost",
"build:css": "sass src/media/scss/index.scss:dist/src/media/index.css --style compressed",
"build:postcss": "postcss dist/src/media/index.css --use autoprefixer -d dist/src/media",
"build:watch:css": "sass src/media/scss/index.scss:dist/src/media/index.css --style compressed --watch",
"build:watch:postcss": "postcss dist/src/media/index.css --use autoprefixer -d dist/src/media --watch",
"build:watch:cssAndPost": "npm run build:watch:css & npm run build:watch:postcss"
},
"repository": {
"type": "git",
"url": "git+https://github.com/citkane/typedoc-theme-yaf.git"
},
"author": "Michael Jonker",
"license": "MIT",
"engines": {
"npm": ">=6.0.0",
"node": ">=14.0.0"
},
"devDependencies": {
"@esm-bundle/chai-as-promised": "^7.1.1",
"@open-wc/testing": "^3.0.0-next.5",
"@typedoc-theme-yaf/tsconfig": "*",
"@types/chai": "^4.3.3",
"@types/chai-as-promised": "^7.1.5",
"@types/fs-extra": "^9.0.13",
"@types/mocha": "^9.1.1",
"@types/node": "^18.0.3",
"@types/prettier": "^2.7.0",
"@typescript-eslint/eslint-plugin": "^5.33.1",
"@typescript-eslint/parser": "^5.33.1",
"@web/test-runner": "^0.14.0",
"@web/test-runner-playwright": "^0.8.10",
"@web/test-runner-visual-regression": "^0.7.0",
"autoprefixer": "^10.4.13",
"chai": "^4.3.6",
"chai-as-promised": "^7.1.1",
"chai-as-promised-esm": "npm:@esm-bundle/chai-as-promised@^7.1.1",
"chokidar": "^3.5.3",
"deep-equal-in-any-order": "^2.0.2",
"eslint": "^8.22.0",
"eslint-config-prettier": "^8.5.0",
"mocha": "^10.0.0",
"nyc": "^15.1.0",
"postcss-cli": "^10.1.0",
"prettier": "^2.7.1",
"sass": "^1.53.0",
"sinon": "^14.0.0",
"source-map-support": "^0.5.21",
"typedoc-plugin-hot-dev": "^0.0.12",
"typescript": "^4.7.4"
},
"dependencies": {
"@wooorm/starry-night": "^1.3.0",
"fs-extra": "^10.1.0",
"hast-util-to-html": "^8.0.3",
"typedoc": "^0.23",
"typedoc-plugin-versions": "^0.2.3"
},
"peerDependencies": {
"typedoc": "^0.23"
},
"mocha": {
"file": "./test/dist/backend/index.spec.js",
"require": [
"./test/dist/backend/hooks.js",
"source-map-support/register"
],
"exit": true
},
"nyc": {
"reporter": [
"text",
"html"
],
"report-dir": "test/coverage/backend",
"temp-dir": "test/.nyc_output"
}
}