-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
75 lines (75 loc) · 1.91 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
71
72
73
74
75
{
"name": "comparing",
"version": "1.3.1",
"description": "Easily create descriptive comparators",
"keywords": [
"typescript",
"utility",
"comparators",
"collections",
"lists",
"sort",
"sorting"
],
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
}
},
"files": [
"dist",
"CHANGELOG.md"
],
"author": "JanMalch",
"repository": {
"type": "git",
"url": "https://www.github.com/JanMalch/comparing"
},
"homepage": "https://janmalch.github.io/comparing#readme",
"bugs": {
"url": "https://github.com/JanMalch/comparing/issues"
},
"license": "MIT",
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsup src/index.ts --format \"cjs,esm\" --dts --clean",
"test": "jest --coverage --no-cache",
"lint": "eslint --fix {src,test}/**/*.ts",
"docs": "typedoc && node postdocs.js",
"release": "standard-version",
"prettier": "prettier --write {src,test}**/*.ts",
"prepack": "npm run build",
"prepare": "husky install"
},
"sideEffects": false,
"devDependencies": {
"@commitlint/cli": "^17.1.2",
"@commitlint/config-conventional": "^17.1.0",
"@types/jest": "^29.0.2",
"@types/node": "^18.7.18",
"@typescript-eslint/eslint-plugin": "^5.37.0",
"@typescript-eslint/parser": "^5.37.0",
"eslint": "^8.23.1",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.1",
"jest": "^29.0.3",
"jest-config": "^29.0.3",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"replace-in-file": "^6.3.5",
"standard-version": "^9.5.0",
"ts-jest": "^29.0.1",
"tsup": "^6.2.3",
"typedoc": "^0.23.14",
"typescript": "^4.8.3"
}
}