forked from mikaello/avrodoc-plus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.32 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
{
"name": "@mikaello/avrodoc-plus",
"description": "Documentation tool for Avro schemas. Forked from https://github.com/leosilvadev/avrodoc-plus.",
"version": "1.1.0",
"author": "mikaello https://github.com/mikaello",
"type": "module",
"bin": "./bin/avrodoc-plus.js",
"scripts": {
"start": "node src/cli.js",
"server": "node app.js",
"test": "NODE_OPTIONS=--experimental-vm-modules jest src/",
"lint": "eslint --ext js,ts,tsx src public/js app.js",
"test:ci": "npm run check-format && npm run lint && npm run test",
"check-format": "prettier --check \"**/!(vendor|stylesheets|bootstrap)/(*.ts?(x)|*.js?(x)|*.json|*.css|*.less|*.html|*.md)\"",
"format": "prettier --write \"**/!(vendor|stylesheets|bootstrap)/(*.ts?(x)|*.js?(x))|*.json|*.css|*.less|*.html|*.md)\""
},
"dependencies": {
"arg": "^5.0.0",
"debug": "^4.0.1",
"dustjs-helpers": "^1.7.4",
"dustjs-linkedin": "^2.7.5",
"esbuild": "^0.11.14",
"less": "^1"
},
"devDependencies": {
"eslint": "^7.25.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-jest": "^24.3.5",
"express": "^4.17.1",
"glob": "^7.1.6",
"jest": "^26.6.3",
"less-middleware": "^2",
"morgan": "^1.10.0",
"prettier": "2.2.1"
},
"prettier": {},
"engines": {
"node": ">=14.x"
},
"license": "Apache-2.0"
}