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
47 lines (47 loc) · 1.15 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.15 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
{
"version": "1.5.0",
"name": "httpsnippet",
"description": "HTTP Request snippet generator for *most* languages",
"author": "Ahmad Nassri <[email protected]> (https://www.mashape.com/)",
"main": "./src/index.js",
"bin": "./bin/httpsnippet",
"engines": {
"node": ">=0.12"
},
"scripts": {
"test": "standard && mocha --reporter spec",
"coverage": "istanbul cover ./node_modules/mocha/bin/_mocha"
},
"standard": {
"ignore": [
"**/test/fixtures/**"
]
},
"repository": {
"type": "git",
"url": "[email protected]:Mashape/httpsnippet"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/Mashape/httpsnippet/issues"
},
"homepage": "https://github.com/Mashape/httpsnippet",
"devDependencies": {
"codeclimate-test-reporter": "0.0.4",
"glob": "^5.0.2",
"istanbul": "^0.3.7",
"mocha": "^2.2.1",
"should": "^5.1.0"
},
"dependencies": {
"async": "^0.9.0",
"chalk": "^1.0.0",
"commander": "^2.7.1",
"debug": "^2.1.2",
"event-stream": "^3.3.0",
"form-data": "^0.2.0",
"har-validator": "^1.1.2",
"require-directory": "^2.1.0",
"standard": "^3.0.0-beta"
}
}