This repository was archived by the owner on Jun 26, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.36 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.36 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
{
"name": "ciao",
"preferGlobal": true,
"private": false,
"version": "2.0.0",
"description": "Ciao is a simple command line utility for testing http(s) requests and generating API documentation",
"contributors": [
{
"name": "Peter Johnson",
"email": "insomnia@rcpt.at"
},
{
"name": "Fabrizio Moscon",
"email": "mosconfabrizio@gmail.com"
}
],
"dependencies": {
"async": "^1.4.2",
"cheerio": "^0.19.0",
"coffee-script": "^1.10.0",
"commander": "^2.8.1",
"deepmerge": "^1.3.2",
"mkdirp": "^0.5.1",
"qs": "^5.1.0",
"should": "^7.1.0",
"should-http": "0.0.4",
"walk": "^2.3.9",
"winston": "^1.0.1"
},
"bin": {
"ciao": "./bin/ciao"
},
"scripts": {
"test": "export NODE_PATH=`pwd` && node node_modules/mocha/bin/mocha --recursive --reporter spec --compilers coffee:coffee-script/register test",
"ciao": "export NODE_PATH=`pwd` && rm -rf doc && mkdir doc && ./bin/ciao -d doc scripts"
},
"devDependencies": {
"mocha": "^2.3.2"
},
"readme": "# Ciao\n\nCiao is a simple command line utility for testing http(s) requests and generating API documentation.\n\nFull documentation: http://missinglink.github.com/ciao/",
"engines": {
"node": ">0.6.0",
"npm": ">1.1.x"
},
"repository": {
"type": "git",
"url": "https://github.com/missinglink/ciao.git"
}
}