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
46 lines (46 loc) · 1.16 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.16 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
{
"version": "1.0.0-beta.10",
"name": "httpsnippet",
"description": "HTTP Request snippet generator for *most* languages",
"main": "./src/index.js",
"bin": "./bin/httpsnippet",
"engines": {
"node": ">=0.12"
},
"scripts": {
"test": "mocha --reporter spec",
"coverage": "mocha -r blanket -R mocha-lcov-reporter > test/lcov.info",
"html-cov": "mocha -r blanket -R html-cov > test/coverage.html",
"codeclimate": "codeclimate < test/lcov.info"
},
"config": {
"blanket": {
"pattern": "src"
}
},
"repository": {
"type": "git",
"url": "[email protected]:ahmadnassri/httpsnippet"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/ahmadnassri/httpsnippet/issues"
},
"homepage": "https://github.com/ahmadnassri/httpsnippet",
"devDependencies": {
"blanket": "^1.1.6",
"codeclimate-test-reporter": "0.0.4",
"glob": "^5.0.1",
"mocha": "^2.1.0",
"mocha-lcov-reporter": "0.0.2",
"should": "^5.0.1"
},
"dependencies": {
"async": "^0.9.0",
"chalk": "^1.0.0",
"commander": "^2.6.0",
"debug": "^2.1.1",
"har-validator": "^1.1.2",
"require-directory": "^2.1.0"
}
}