forked from Kong/httpsnippet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
90 lines (90 loc) · 1.94 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
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
82
83
84
85
86
87
88
89
90
{
"version": "1.16.5",
"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",
"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",
"pretest": "standard && echint",
"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.1",
"echint": "^3.0.0",
"glob": "^6.0.1",
"istanbul": "^0.4.0",
"mocha": "^2.3.4",
"require-directory": "^2.1.1",
"should": "^7.1.1",
"standard": "^10.0.2"
},
"dependencies": {
"chalk": "^1.1.1",
"commander": "^2.9.0",
"debug": "^2.2.0",
"event-stream": "^3.3.2",
"form-data": "^1.0.0-rc3",
"fs-readfile-promise": "^2.0.1",
"fs-writefile-promise": "^1.0.3",
"har-validator": "^5.0.0",
"pinkie-promise": "^2.0.0"
}
}