forked from canada-ca/tracker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.38 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 1.38 KB
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": "mime-kind",
"author": "Alexey Bystrov <strikeentco@gmail.com>",
"version": "3.0.0",
"description": "Detect the MIME type of a Buffer, Uint8Array, ArrayBuffer, ReadableStream, file path and file name, with sync and async methods.",
"engines": {
"node": ">=8.3.0"
},
"keywords": [
"file",
"type",
"types",
"mime",
"buffer",
"stream",
"read stream",
"readable stream",
"detect",
"sync",
"async"
],
"main": "./index.js",
"files": [
"index.js",
"utils.js"
],
"scripts": {
"test": "mocha test",
"lint": "eslint index.js utils.js",
"check": "npm run lint && npm run test",
"cover": "nyc ./node_modules/mocha/bin/_mocha && nyc report --reporter=html",
"test-on-travis": "nyc ./node_modules/mocha/bin/_mocha && nyc report --reporter=lcovonly"
},
"repository": {
"type": "git",
"url": "git+https://github.com/strikeentco/mime-kind.git"
},
"bugs": {
"url": "https://github.com/strikeentco/mime-kind/issues"
},
"dependencies": {
"file-type": "^12.1.0",
"mime-types": "^2.1.24"
},
"devDependencies": {
"eslint": "^5.16.0",
"eslint-config-airbnb": "^17.1.1",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.14.3",
"mocha": "^6.2.0",
"nyc": "^14.1.1",
"should": "^13.2.3"
},
"license": "MIT"
}