-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.67 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
65
66
67
68
{
"name": "@jadsonlucena/mediatypes",
"version": "1.1.0",
"description": "This is a comprehensive compilation of media types that is periodically updated through the following projects: Apache, NGINX and Debian",
"main": "./src/MediaTypes.js",
"engines": {
"node": ">=18.13"
},
"scripts": {
"test": "jest ./test",
"lint": "eslint ./src ./test --ext .js"
},
"files": [
"src/",
"README.md",
"LICENSE"
],
"repository": {
"type": "git",
"url": "git+https://github.com/JadsonLucena/MediaTypes.js.git"
},
"keywords": [
"media types",
"mediatypes",
"mime types",
"mime.types",
"content-type",
"accept"
],
"author": "JadsonLucena <[email protected]> (https://github.com/JadsonLucena)",
"license": "MIT",
"bugs": {
"url": "https://github.com/JadsonLucena/MediaTypes.js/issues"
},
"homepage": "https://github.com/JadsonLucena/MediaTypes.js#readme",
"devDependencies": {
"jest": "latest",
"eslint": "latest",
"eslint-config-standard": "latest",
"eslint-plugin-jest": "latest",
"@commitlint/cli": "latest",
"@commitlint/config-conventional": "latest"
},
"jest": {
"collectCoverage": true,
"verbose": true,
"collectCoverageFrom": ["./src/*.js"],
"coverageReporters": ["clover", "json", "lcov", "text", "html"],
"coverageThreshold": {
"global": {
"branches": 100,
"functions": 100,
"lines": 100,
"statements": 100
}
}
},
"eslintConfig": {
"plugins": ["jest"],
"env": {
"jest/globals": true
},
"extends": "standard"
},
"commitlint": {
"extends": ["@commitlint/config-conventional"]
}
}