-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 1.83 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
69
70
{
"name": "class-mergesort",
"version": "0.0.2",
"description": "A css class utility for sorting arrays of objects by a given key",
"type": "module",
"main": "./dist/src/index.js",
"types": "./dist/src/index.d.ts",
"module": "./dist/src/index.js",
"exports": {
"./src": "./index.ts"
},
"documentation": "./docs/index.html",
"scripts": {
"prepack": "npm run build && npm run doc && npm run format",
"build": "tsup src/index.ts --dts --minify --format cjs,esm --out-dir dist",
"doc": "typedoc --out docs src/index.ts",
"doc:markdown": "typedoc --plugin typedoc-plugin-markdown --out doc src/index.ts",
"format": "prettier . --write",
"lint": "eslint . --ext .ts",
"test": "jest"
},
"keywords": [
"merge",
"sort",
"mergesort",
"merge sort",
"merge-sort",
"class",
"typescript",
"ts"
],
"author": "Bradley Dirheimer",
"website": "https://dirheimerb.github.io/class-mergesort",
"repository": {
"directory": "src",
"type": "git",
"url": "https://github.com/dirheimerb/class-mergesort.git"
},
"license": "MIT",
"devDependencies": {
"@types/jest": "^29.5.6",
"@types/node": "^20.8.9",
"@typescript-eslint/eslint-plugin": "^6.9.0",
"@typescript-eslint/parser": "^6.9.0",
"eslint": "^8.52.0",
"jest": "^29.7.0",
"prettier": "^3.0.3",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"tsup": "^7.2.0",
"typedoc": "^0.25.2",
"typedoc-plugin-markdown": "^3.16.0",
"typescript": "^5.2.2"
},
"prettier": {
"printWidth": 80,
"singleQuote": true,
"trailingComma": "all",
"arrowParens": "always",
"endOfLine": "lf"
},
"files": [
"./src/index.ts",
"./src/utils/index.ts",
"./src/types/index.ts",
"./dist/src/index.js",
"./dist/src/utils/index.js",
"./dist/src/types/index.js"
]
}