-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
35 lines (35 loc) · 955 Bytes
/
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
{
"name": "typed-routes-generator",
"version": "1.0.6",
"description": "Generate typed routes from yaml file",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"homepage": "https://github.com/homoky/typed-routes-generator",
"repository": {
"type": "git",
"url": "https://github.com/homoky/typed-routes-generator.git"
},
"bugs": {
"url": "https://github.com/homoky/typed-routes-generator/issues"
},
"scripts": {
"prepublish": "tsc",
"example": "ts-node src/index.ts --source ./example/routes.yaml --output ./example/generated.ts",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"routes",
"typed"
],
"author": "Petr Homoky",
"license": "ISC",
"devDependencies": {
"@types/node": "^17.0.34",
"ts-node": "^10.7.0",
"commander": "^9.2.0",
"deep-clone-map": "^1.4.1",
"fs": "^0.0.1-security",
"yaml": "^2.1.0"
},
"bin": "./dist/index.js"
}