This repository has been archived by the owner on Jul 12, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
67 lines (67 loc) · 2.09 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
{
"name": "typedoc-neo-theme",
"description": "Improved theme for Typedoc",
"version": "1.1.1",
"main": "index.js",
"scripts": {
"clean:build": "./node_modules/.bin/rimraf bin",
"clean:node_modules": "rm -rf ./node_modules/",
"clean": "npm run clean:build",
"grunt": "cp ./third_party/gruntfile.js ./ && ./node_modules/.bin/grunt",
"tsc": "./node_modules/.bin/tsc",
"build": "npm run build:theme && npm run build:plugin",
"build:theme": "npm run clean:build && npm run grunt",
"build:plugin": "npm run tsc && mv ./plugin.js ./bin/default/plugin.js && mkdir ./bin/default/helpers && cp ./third_party/src/default/helpers/*.js ./bin/default/helpers",
"lint": "npm run lint:plugin && npm run lint:theme",
"lint:plugin": "tslint -p .",
"lint:theme": "tslint third_party/src/default/assets/js/src/typedoc/**/*.ts",
"test": "npm run test:rebuild",
"test:ci": "yarn test:rebuild && yarn audit",
"test:rebuild": "yarn clean:node_modules && yarn && yarn build"
},
"author": {
"name": "Nick Felker, based on work by Sebastian Lenz"
},
"license": "Apache-2.0",
"engines": {
"node": ">=6"
},
"dependencies": {
"lunr": "^2.3.8",
"typedoc": "~0.20.13"
},
"devDependencies": {
"@types/lunr": "^2.3.2",
"grunt": "^1.1.0",
"grunt-autoprefixer": "^3.0.4",
"grunt-cli": "^1.2.0",
"grunt-contrib-copy": "^1.0.0",
"grunt-contrib-sass": "^1.0.0",
"grunt-contrib-uglify": "^2.3.0",
"grunt-contrib-watch": "^1.0.0",
"grunt-string-replace": "^1.0.0",
"grunt-ts": "^6.0.0-beta.22",
"rimraf": "^2.6.1",
"sass": "^1.23.3",
"tslint": "^6.1.0",
"tslint-eslint-rules": "^5.1.0",
"typescript": "^3.9.0"
},
"resolutions": {
"minimist": ">=1.2.3"
},
"keywords": [
"typescript",
"documentation",
"generator",
"typedocplugin"
],
"repository": {
"type": "git",
"url": "git+https://github.com/google/typedoc-neo-theme.git"
},
"bugs": {
"url": "https://github.com/google/typedoc-neo-theme/issues"
},
"homepage": "https://github.com/google/typedoc-neo-theme#readme"
}