This repository has been archived by the owner on Jun 13, 2024. It is now read-only.
forked from kurttheviking/habrok-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.81 KB
/
package.json
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "@agilemd/habrok",
"description": "Promises/A+, request-powered, boom-enabled, JSON-first HTTP API client with automatic retry",
"version": "2.5.0",
"license": "ISC",
"main": "index.js",
"engines": {
"node": ">4.x"
},
"author": {
"name": "Kurt Ericson",
"email": "[email protected]",
"url": "https://github.com/kurttheviking"
},
"contributors": [
{
"name": "Kurt Ericson",
"email": "[email protected]",
"url": "https://github.com/kurttheviking"
}
],
"repository": {
"type": "git",
"url": "git+https://github.com/kurttheviking/habrok-js.git"
},
"bugs": {
"url": "https://github.com/kurttheviking/habrok-js/issues"
},
"homepage": "https://github.com/kurttheviking/habrok-js#readme",
"keywords": [
"api client",
"request",
"promise",
"promises-a",
"promises-aplus"
],
"dependencies": {
"boom": "7.3.0",
"debug": "4.3.3",
"has": "1.0.3",
"request": "2.88.2"
},
"devDependencies": {
"chai": "4.3.6",
"coveralls": "3.1.1",
"eslint": "6.5.1",
"eslint-config-airbnb": "18.0.1",
"eslint-plugin-import": "2.25.4",
"eslint-plugin-jsx-a11y": "6.5.1",
"eslint-plugin-react": "7.29.3",
"eslint-plugin-react-hooks": "2.1.2",
"istanbul": "0.4.5",
"mocha": "6.2.1",
"mocha-eslint": "5.0.0",
"mockery": "2.1.0",
"sinon": "7.5.0",
"uuid-with-v6": "1.1.2"
},
"scripts": {
"coverage": "./node_modules/istanbul/lib/cli.js cover --report=json-summary --report=html _mocha ./test -- --recursive",
"coveralls": "istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly ./test -- --recursive -R spec && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
"test": "node node_modules/mocha/bin/mocha ./test/$DIR --recursive"
}
}