-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
40 lines (40 loc) · 1.03 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
{
"name": "postgen",
"version": "5.0.4",
"description": "A simple node script to convert postman collections to clean REST client libs for node.",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"version": "./node_modules/.bin/auto-changelog --template changelog-template.hbs -p && git add -f CHANGELOG.md && git add --all",
"postversion": "git push && git push --tags && npm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Phara0h/Postgen.git"
},
"keywords": [
"postman",
"client",
"generator",
"rest",
"api",
"es6",
"class",
"interface"
],
"author": "Jt Whissel",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/Phara0h/Postgen/issues"
},
"homepage": "https://github.com/Phara0h/Postgen#readme",
"bin": {
"postgen": "./index.js"
},
"dependencies": {
"auto-changelog": "^1.16.1",
"fasquest": "^3.1.3",
"postman-collection": "^4.0.1",
"prettier": "2.2.1"
}
}