-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
52 lines (52 loc) · 1.23 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
{
"name": "human-filetypes",
"version": "1.1.4",
"description": "Human-friendly taxonomy for file types",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"dev": "concurrently npm:test:watch npm:build:watch",
"test": "jest",
"test:watch": "jest --watch",
"build": "tsc",
"build:watch": "tsc -w",
"lint": "eslint src --ext ts",
"prepare": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/anttiviljami/human-filetypes.git"
},
"keywords": [
"file",
"types",
"mime",
"human",
"friendly"
],
"author": "Viljami Kuosmanen",
"license": "MIT",
"bugs": {
"url": "https://github.com/anttiviljami/human-filetypes/issues"
},
"files": [
"*.js",
"*.map",
"*.d.ts",
"!*.test.*"
],
"homepage": "https://github.com/anttiviljami/human-filetypes#readme",
"devDependencies": {
"@types/jest": "^27.0.3",
"@typescript-eslint/eslint-plugin": "^5.5.0",
"concurrently": "^6.4.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"eslintrc": "^1.0.6",
"jest": "^27.3.1",
"prettier": "^2.5.0",
"ts-jest": "^27.0.7",
"ts-node": "^10.4.0",
"typescript": "^4.5.2"
}
}