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
54 lines (54 loc) · 1.25 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.25 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
{
"version": "1.10.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": [
"HAR",
"HTTP",
"API",
"Snippet"
],
"engines": {
"node": ">=0.12"
},
"repository": {
"type": "git",
"url": "https://github.com/Mashape/httpsnippet"
},
"bugs": {
"url": "https://github.com/Mashape/httpsnippet/issues"
},
"scripts": {
"test": "standard && mocha --reporter spec",
"coverage": "istanbul cover ./node_modules/mocha/bin/_mocha",
"prepush": "npm test"
},
"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"
},
"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.1.2",
"require-directory": "^2.1.0",
"standard": "^2.11.0"
}
}