-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
47 lines (47 loc) · 1.02 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
{
"name": "@n1rjal/pm_ts",
"version": "0.3.2",
"author": "Nirjal Paudel<[email protected]>",
"description": "A simple tool that transforms Postman files into typescript type files",
"bin": {
"pm_ts": "bin/index.js"
},
"homepage": "https://github.com/n1rjal/postman-to-typescript",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "https://github.com/n1rjal/postman-to-typescript"
},
"files": [
"bin"
],
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"keywords": [
"utils",
"postman",
"typescript",
"code-generator",
"generator",
"convertor",
"type-generator"
],
"engines": {
"node": ">=16.0.0"
},
"bugs": {
"email": "[email protected]",
"url": "https://github.com/n1rjal/postman-to-typescript/issues"
},
"license": "Apache-2.0",
"devDependencies": {
"eslint": "^8.45.0",
"husky": "^8.0.3"
}
}