-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.09 KB
/
Copy pathpackage.json
File metadata and controls
38 lines (38 loc) · 1.09 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
{
"name": "refocus-client",
"version": "1.2.0",
"description": "REST API wrapper for Refocus",
"main": "index.js",
"scripts": {
"test-local": "./node_modules/mocha/bin/_mocha --reporter list --recursive ./test/**/*.js",
"test": "istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/iamigo/refocus-client.git"
},
"keywords": [
"Refocus",
"REST",
"API"
],
"author": "Ian Goldstein <ianmgoldstein@gmail.com>",
"license": "ISC",
"bugs": {
"url": "https://github.com/iamigo/refocus-client/issues"
},
"homepage": "https://github.com/iamigo/refocus-client#readme",
"devDependencies": {
"chai": "^3.5.0",
"coveralls": "^2.11.14",
"istanbul": "^0.4.5",
"mocha": "^3.1.2",
"mocha-lcov-reporter": "^1.2.0"
},
"dependencies": {
"global-tunnel": "^1.2.0",
"promise-map-series": "^0.2.3",
"request": "^2.76.0",
"request-promise": "^4.1.1"
}
}