-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.24 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": "mime-file-extension",
"version": "2.0.6",
"description": "File extensions for mime type and vice versa",
"main": "./dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"lint": "eslint . --ext .ts",
"prebuild": "npx ts-node-script src/prebuild.ts",
"build": "npx tsc",
"test": "npm run lint & npm run prebuild & jest",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/robert8888/mime-file-extension.git"
},
"keywords": [
"MimeType",
"FileExtensions",
"Mime",
"File",
"Extensions"
],
"author": "[email protected]",
"license": "ISC",
"bugs": {
"url": "https://github.com/robert8888/mime-file-extension/issues"
},
"homepage": "https://github.com/robert8888/mime-file-extension#readme",
"devDependencies": {
"@types/jest": "^26.0.23",
"@types/node": "^15.0.1",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"eslint": "^7.25.0",
"jest": "^26.6.3",
"ts-jest": "^26.5.5",
"ts-node": "^9.1.1",
"typescript": "^4.2.4"
},
"files": [
"dist/index.d.ts",
"dist/index.js",
"dist/index.js.map",
"dist/map.json"
],
"dependencies": {}
}