-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
55 lines (55 loc) · 1.81 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
{
"name": "@voxgig/docgen",
"version": "0.5.0",
"main": "dist/docgen.js",
"type": "commonjs",
"types": "dist/docgen.d.ts",
"description": "Voxgig SDK Generator.",
"homepage": "https://github.com/voxgig/voxgig-docgen",
"keywords": [
"voxgig",
"docgen"
],
"author": "Richard Rodger (http://richardrodger.com)",
"repository": {
"type": "git",
"url": "git://github.com/voxgig/docgen.git"
},
"scripts": {
"test": "node --enable-source-maps --test dist-test",
"test22": "node --enable-source-maps --test \"dist-test/*.test.js\"",
"test-some": "node --enable-source-maps --test-name-pattern=\"$npm_config_pattern\" --test dist-test",
"watch": "tsc --build src test -w",
"build": "tsc --build src test",
"clean": "rm -rf node_modules yarn.lock package-lock.json",
"reset": "npm run clean && npm i && npm run build && npm test",
"repo-tag": "REPO_VERSION=`node -e \"console.log(require('./package').version)\"` && echo TAG: v$REPO_VERSION && git commit -a -m v$REPO_VERSION && git push && git tag v$REPO_VERSION && git push --tags;",
"repo-publish": "npm run clean && npm i && npm run repo-publish-quick",
"repo-publish-quick": "npm run build && npm run test && npm run repo-tag && npm publish --registry https://registry.npmjs.org --access=public"
},
"license": "MIT",
"files": [
"model",
"src",
"dist",
"LICENSE"
],
"devDependencies": {
"@hapi/code": "^9.0.3",
"@types/js-yaml": "^4.0.9",
"@types/node": "22.9.0",
"esbuild": "^0.24.0",
"json-schema-to-ts": "^3.1.1",
"memfs": "^4.14.0",
"typescript": "^5.6.3"
},
"peerDependencies": {
"aontu": ">=0",
"@redocly/openapi-core": ">=1",
"@voxgig/apidef": ">=1",
"@voxgig/util": ">=0",
"jostraca": ">=0",
"pino": ">=9",
"pino-pretty": ">=13"
}
}