This repository was archived by the owner on May 22, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.45 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.45 KB
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
{
"name": "@egomobile/documentation",
"version": "0.7.2",
"description": "Tools for documenting (TypeScript) code.",
"main": "lib/index.js",
"engines": {
"node": ">=18.0.0"
},
"files": [
"CHANGELOG.md",
"LICENSE",
"lib",
"!lib/**/*.map",
"README.md"
],
"keywords": [
"node",
"js",
"ts",
"javascript",
"typescript",
"documentations",
"tools",
"utils",
"utilities",
"classes",
"functions",
"types",
"interfaces",
"ego"
],
"scripts": {
"build": "del ./lib && tsc",
"docs:generate": "del ./docs && typedoc --out ./docs ./src",
"lint": "eslint -c .eslintrc.js --ext .ts src",
"lint:fix": "eslint --fix -c .eslintrc.js --ext .ts src",
"sandbox": "nodemon --watch './sandbox/index.ts' ./sandbox/index.ts --inspect=0.0.0.0:9229"
},
"repository": {
"type": "git",
"url": "https://github.com/egomobile/node-documentation"
},
"author": "Next.e.GO Mobile SE, Aachen, Germany",
"license": "LGPL-3.0",
"devDependencies": {
"@egomobile/tsconfig": "^5.0.0",
"@types/node": "18.19.11",
"del-cli": "5.1.0",
"eslint": "8.56.0",
"eslint-config-ego": "^0.19.0",
"nodemon": "3.0.3",
"ts-node": "10.9.2",
"typedoc": "0.25.7",
"typescript": "4.7.4"
}
}