-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
61 lines (61 loc) · 1.29 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": "@aasaam/http-status-extra",
"version": "0.2.4",
"description": "HTTP Status code extra information and emoji",
"types": "index.d.ts",
"main": "index.js",
"private": false,
"scripts": {
"lint": "eslint .",
"test:cover": "jest --detectOpenHandles --runInBand --collectCoverage",
"test": "jest --detectOpenHandles --runInBand"
},
"homepage": "https://aasaam.github.io/http-status-extra",
"repository": {
"type": "git",
"url": "git+https://github.com/aasaam/http-status-extra.git"
},
"jest": {
"testRegex": ".spec.js$",
"collectCoverageFrom": [
"index.js",
"src/**/*.js"
],
"coverageDirectory": "coverage",
"coverageReporters": [
"json",
"json-summary",
"text",
"lcov",
"html",
"clover"
],
"testEnvironment": "node"
},
"authors": [
{
"name": "Muhammad Hussein Fattahizadeh",
"email": "[email protected]"
}
],
"keywords": [
"aasaam",
"http",
"status",
"nginx",
"cloudflare",
"elasticloadbalancing",
"iis",
"emoji"
],
"license": "MIT",
"devDependencies": {
"@types/jest": "^27",
"eslint": "^8",
"eslint-config-airbnb-base": "^15",
"eslint-plugin-import": "^2",
"jest": "^28",
"lodash": "^4",
"stringz": "^2"
}
}