This repository was archived by the owner on Feb 17, 2023. It is now read-only.
forked from Kong/httpsnippet
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 1.85 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 1.85 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"version": "1.16.5",
"name": "httpsnippet",
"description": "HTTP Request snippet generator for *most* languages",
"author": "Ahmad Nassri <[email protected]> (https://www.mashape.com/)",
"homepage": "https://github.com/Mashape/httpsnippet",
"license": "MIT",
"main": "src/index.js",
"bin": "bin/httpsnippet",
"keywords": [
"api",
"clojure",
"csharp",
"curl",
"go",
"har",
"http",
"httpie",
"java",
"javascript",
"jquery",
"objc",
"objective-c",
"ocaml",
"php",
"python",
"request",
"requests",
"ruby",
"shell",
"snippet",
"swift",
"swift",
"unirest",
"xhr",
"xmlhttprequest"
],
"engines": {
"node": ">=0.10"
},
"files": ["bin", "src"],
"repository": "Mashape/httpsnippet",
"bugs": {
"url": "https://github.com/Mashape/httpsnippet/issues"
},
"scripts": {
"quick": "mocha --no-timeouts --fgrep 'Request Validation' --invert",
"test": "mocha --no-timeouts",
"posttest": "npm run coverage",
"coverage":
"istanbul cover --dir coverage _mocha -- --fgrep 'Request Validation' --invert -R dot",
"codeclimate": "codeclimate < coverage/lcov.info"
},
"standard": {
"ignore": ["**/test/fixtures/**"]
},
"echint": {
"ignore": ["coverage/**", "CONTRIBUTING.md", "test/fixtures/**"]
},
"devDependencies": {
"codeclimate-test-reporter": "0.1.x",
"echint": "3.0.x",
"glob": "6.0.x",
"istanbul": "0.4.x",
"mocha": "2.3.x",
"require-directory": "2.1.x",
"should": "7.1.x",
"standard": "10.0.x"
},
"dependencies": {
"chalk": "1.x.x",
"commander": "2.x.x",
"debug": "2.x.x",
"event-stream": "3.x.x",
"form-data": "2.3.x",
"fs-readfile-promise": "2.x.x",
"fs-writefile-promise": "1.x.x",
"har-validator": "5.x.x",
"pinkie-promise": "2.x.x"
}
}