-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.13 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
{
"name": "compile-mime-match",
"version": "0.1.0",
"description": "Compiles a function that matches a given MIME type.",
"license": "MIT",
"author": "Nathan Woltman <[email protected]>",
"main": "compile-mime-match.js",
"files": [
"compile-mime-match.js"
],
"engines": {
"node": ">=6"
},
"repository": "github:medleyjs/compile-mime-match",
"homepage": "https://github.com/medleyjs/compile-mime-match#readme",
"bugs": "https://github.com/medleyjs/compile-mime-match/issues",
"keywords": [
"compile",
"mime",
"content",
"type",
"match",
"medley",
"fast"
],
"nyc": {
"reporter": [
"html",
"text-summary"
],
"check-coverage": true,
"branches": 100,
"lines": 100,
"statements": 100
},
"devDependencies": {
"@nwoltman/eslint-config": "^0.5.1",
"coveralls": "^3.0.7",
"eslint": "^6.6.0",
"mocha": "^6.2.2",
"nyc": "^14.1.1"
},
"scripts": {
"lint": "eslint *.js test/*.js",
"test-only": "nyc mocha",
"test": "eslint *.js test/*.js && nyc mocha",
"coveralls": "nyc report --reporter=text-lcov | coveralls"
}
}