-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
61 lines (61 loc) · 1.53 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
{
"name": "habrok",
"description": "Promises/A+, request-powered, boom-enabled, JSON-first HTTP API client with automatic retry",
"version": "4.1.2",
"license": "ISC",
"main": "index.js",
"engines": {
"node": ">6.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.1.1",
"has": "1.0.3",
"request": "2.88.2"
},
"devDependencies": {
"chai": "4.2.0",
"coveralls": "3.0.11",
"eslint": "6.8.0",
"eslint-config-airbnb": "18.1.0",
"eslint-plugin-import": "2.20.2",
"nyc": "15.0.1",
"mocha": "7.1.1",
"mocha-eslint": "6.0.0",
"mockery": "2.1.0",
"sinon": "9.0.2",
"uuid-with-v6": "1.1.2"
},
"scripts": {
"coverage": "nyc --reporter=lcov --reporter=text-summary npm run test",
"coveralls": "nyc --reporter=text-lcov npm run test | coveralls",
"test": "node node_modules/mocha/bin/mocha ./test/$DIR --recursive"
}
}