This repository was archived by the owner on May 11, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.57 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.57 KB
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": "postman-collection-code-generators",
"version": "0.0.1",
"description": "Repository for generating code from Postman Collection.",
"main": "index.js",
"scripts": {
"test": "npm/test.sh",
"test-unit": "node npm/test-unit.js",
"test-lint": "node npm/test-lint.js",
"postinstall": "node npm/deepinstall.js",
"deepinstall": "node npm/deepinstall.js"
},
"bin": {
"sdkgen": "./bin/sdkgen.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/umeshp7/postman-collection-code-generators.git"
},
"keywords": [
"postman",
"postman-collection",
"code-generators"
],
"author": "Postman Labs <help@postman.com>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/umeshp7/postman-collection-code-generators/issues"
},
"homepage": "https://github.com/umeshp7/postman-collection-code-generators#readme",
"dependencies": {
"async": "^3.2.0",
"chalk": "^4.1.0",
"cli-table3": "^0.6.0",
"commander": "^6.0.0",
"js-beautify": "^1.13.0",
"node-fetch": "^2.6.0",
"postman-code-generators": "git+https://github.com/someshkoli/postman-code-generators.git#sdkGenerator",
"postman-collection": "^3.6.2",
"shelljs": "^0.8.4"
},
"devDependencies": {
"chai": "^4.2.0",
"eslint": "^7.1.0",
"eslint-plugin-jsdoc": "^27.0.6",
"eslint-plugin-lodash": "^7.1.0",
"eslint-plugin-security": "^1.4.0",
"istanbul": "^0.4.5",
"lodash": "^4.17.15",
"mocha": "^7.2.0",
"nyc": "^15.1.0",
"pretty-ms": "^7.0.0",
"recursive-readdir": "^2.2.2"
}
}