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
73 lines (73 loc) · 1.62 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 1.62 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
{
"version": "1.15.0",
"name": "httpsnippet",
"description": "HTTP Request snippet generator for *most* languages",
"author": "Ahmad Nassri <ahmad@mashape.com> (https://www.mashape.com/)",
"homepage": "https://github.com/Mashape/httpsnippet",
"license": "MIT",
"main": "./src/index.js",
"bin": "./bin/httpsnippet",
"keywords": [
"api",
"curl",
"go",
"har",
"http",
"httpie",
"java",
"objective-c",
"ocaml",
"php",
"python",
"request",
"requests",
"ruby",
"snippet",
"swift",
"unirest",
"xhr",
"xmlhttprequest"
],
"engines": {
"node": ">=0.10"
},
"files": [
"bin",
"src"
],
"repository": {
"type": "git",
"url": "https://github.com/Mashape/httpsnippet"
},
"bugs": {
"url": "https://github.com/Mashape/httpsnippet/issues"
},
"scripts": {
"test": "standard && mocha --no-timeouts --reporter spec --fgrep 'Request Validation' --invert",
"travis": "standard && mocha --no-timeouts --reporter spec",
"coverage": "istanbul cover ./node_modules/mocha/bin/_mocha -- --fgrep 'Request Validation' --invert"
},
"standard": {
"ignore": [
"**/test/fixtures/**"
]
},
"devDependencies": {
"codeclimate-test-reporter": "0.0.4",
"glob": "^5.0.3",
"istanbul": "^0.3.8",
"mocha": "^2.2.1",
"should": "^5.2.0",
"standard": "^3.2.0"
},
"dependencies": {
"async": "^0.9.0",
"chalk": "^1.0.0",
"commander": "^2.7.1",
"debug": "^2.1.3",
"event-stream": "^3.3.0",
"form-data": "^0.2.0",
"har-validator": "^1.2.0",
"require-directory": "^2.1.0"
}
}