-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
56 lines (56 loc) · 1.61 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
{
"name": "@everymundo/http-client",
"version": "4.6.0",
"description": "This is a helper to perform POST requests using promises and no external dependencies",
"main": "index.js",
"directories": {
"lib": "lib"
},
"scripts": {
"cover": "env RETRY_TIMEOUT_MS= MAX_RETRY_ATTEMPTS= SIMULATE= LOG_LEVEL=silent c8 -x test --reporter=lcov --reporter=text mocha test --recursive",
"check-coverage": "c8 check-coverage --statements 100 --branches 100 --functions 100 --lines 100",
"check-lint": "standard --env=mocha *.js lib/*.js lib/**/*.js classes/*.js test/**.js test/**/*.js",
"fix-lint": "npm run check-lint -- --fix",
"test": "env RETRY_TIMEOUT_MS= MAX_RETRY_ATTEMPTS= SIMULATE= LOG_LEVEL=silent mocha test --recursive"
},
"config": {
"ghooks": {
"pre-commit": "npm run check-lint && npm test",
"pre-push": "npm run cover && npm run check-coverage"
}
},
"standard": {
"env": {
"mocha": true
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/EveryMundo/http-client.git"
},
"keywords": [
"nodejs",
"node",
"http",
"https",
"request"
],
"author": "Daniel Santana <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/EveryMundo/http-client/issues"
},
"homepage": "https://github.com/EveryMundo/http-client#readme",
"devDependencies": {
"c8": "^10.1.2",
"chai": "^5.1.2",
"flatstr": "^1.0.12",
"ghooks": "^2.0.4",
"mocha": "^10.7.3",
"sinon": "^19.0.2",
"standard": "^17.1.2"
},
"optionalDependencies": {
"@everymundo/simple-logr": "*"
}
}