-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.41 KB
/
Copy pathpackage.json
File metadata and controls
48 lines (48 loc) · 1.41 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
{
"name": "httprompt",
"version": "1.1.3",
"description": "A readline prompt for interacting with APIs.",
"main": "index.js",
"scripts": {
"test": "./node_modules/.bin/mocha tests --recursive -R dot",
"coverage-html": "istanbul cover -x src/app/commands/index.js -x src/bootstrap.js --include-all-sources ./node_modules/mocha/bin/_mocha tests -- --recursive -R spec",
"coveralls": "istanbul cover -x src/app/commands/index.js -x src/bootstrap.js --include-all-sources ./node_modules/mocha/bin/_mocha tests --report lcovonly -- --recursive -R spec && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage"
},
"bin": {
"httprompt": "./bin/httprompt"
},
"keywords": [
"api",
"repl",
"prompt",
"terminal",
"http",
"rest"
],
"author": {
"name": "Adrian Schneider",
"email": "adrian@compiledintent.com",
"url": "http://adrianschneider.ca/"
},
"repository": {
"type": "git",
"url": "https://github.com/AdrianSchneider/httprompt.git"
},
"dependencies": {
"async": "^1.2.1",
"bson-objectid": "^1.1.1",
"commander": "^2.8.1",
"readline-vim": "^0.3.2",
"request": "^2.58.0",
"underscore": "^1.8.3"
},
"license": "MIT",
"devDependencies": {
"chai": "^3.0.0",
"coveralls": "^2.11.2",
"istanbul": "^0.3.17",
"mocha": "^2.2.5",
"nodemock": "^0.3.4"
},
"preferGlobal": true
}