-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.65 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
{
"name": "@voxgig/apigen",
"version": "0.0.7",
"main": "dist/apigen.js",
"type": "commonjs",
"types": "dist/apigen.d.ts",
"description": "Voxgig API Generator.",
"homepage": "https://github.com/voxgig/voxgig-apigen",
"keywords": [
"voxgig-apigen",
"voxgig-apigen"
],
"author": "Richard Rodger (http://richardrodger.com)",
"repository": {
"type": "git",
"url": "git://github.com/voxgig/apigen.git"
},
"scripts": {
"test": "node --enable-source-maps --test dist-test",
"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": [
"src",
"dist",
"LICENSE"
],
"devDependencies": {
"@hapi/code": "^9.0.3",
"@types/js-yaml": "^4.0.9",
"@types/node": "22.3.0",
"aontu": "^0.21.1",
"esbuild": "^0.23.0",
"json-schema-to-ts": "^3.1.0",
"memfs": "^4.11.1",
"typescript": "^5.5.4"
},
"dependencies": {
"@redocly/openapi-core": "^1.19.0",
"jostraca": "^0.1.6"
}
}