-
Notifications
You must be signed in to change notification settings - Fork 377
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 879 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 879 Bytes
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
{
"name": "@postman/codegen-golang",
"version": "0.1.6",
"description": "Converts Postman SDK Requests to go lang code snippet",
"main": "index.js",
"com_postman_plugin": {
"type": "code_generator",
"lang": "go",
"variant": "Native",
"syntax_mode": "golang"
},
"directories": {
"lib": "lib",
"test": "test"
},
"scripts": {
"test": "node npm/test.js",
"test-lint": "node npm/test-lint.js",
"test-newman": "node npm/test-newman.js",
"test-unit": "node npm/test-unit.js"
},
"repository": {
"type": "git",
"url": ""
},
"author": "Postman Labs <[email protected]>",
"license": "Apache-2.0",
"homepage": "https://github.com/postmanlabs/code-generators/tree/master/codegens/golang",
"dependencies": {
"postman-collection": "3.6.8"
},
"devDependencies": {},
"engines": {
"node": ">=8"
}
}