forked from Kong/httpsnippet
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
97 lines (97 loc) · 2.1 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
91
92
93
94
95
96
97
{
"version": "2.0.17",
"name": "@rapidapi/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",
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
},
"keywords": [
"api",
"clojure",
"csharp",
"curl",
"go",
"har",
"http",
"httpie",
"httr",
"java",
"javascript",
"jquery",
"kotlin",
"objc",
"objective-c",
"ocaml",
"php",
"python",
"request",
"requests",
"ruby",
"shell",
"snippet",
"swift",
"swift",
"unirest",
"xhr",
"xmlhttprequest"
],
"engines": {
"node": ">=10"
},
"files": [
"bin",
"src"
],
"repository": "RapidAPI/httpsnippet",
"bugs": {
"url": "https://github.com/RapidAPI/httpsnippet/issues"
},
"scripts": {
"quick": "mocha --no-timeouts --fgrep 'Request Validation' --invert",
"test": "mocha --no-timeouts",
"posttest": "exit 0 && npm run coverage",
"coverage": "istanbul cover --dir coverage _mocha -- --fgrep 'Request Validation' --invert -R dot",
"codeclimate": "codeclimate < coverage/lcov.info"
},
"standard": {
"env": "mocha",
"ignore": [
"**/test/fixtures/**"
]
},
"echint": {
"ignore": [
"coverage/**",
"**/node_modules/**",
"**/fixtures/**"
]
},
"devDependencies": {
"codeclimate-test-reporter": "^0.5.1",
"echint": "^4.0.2",
"glob": "^6.0.1",
"istanbul": "^0.4.0",
"mocha": "^8.2.1",
"require-directory": "^2.1.1",
"should": "^13.2.3",
"standard": "^16.0.3"
},
"dependencies": {
"chalk": "^1.1.1",
"commander": "^2.9.0",
"debug": "^2.2.0",
"event-stream": "3.3.4",
"form-data": "3.0.0",
"fs-readfile-promise": "^2.0.1",
"fs-writefile-promise": "^1.0.3",
"har-validator": "^5.0.0",
"lodash": "^4.17.15",
"pinkie-promise": "^2.0.0",
"stringify-object": "^3.3.0"
}
}