-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
55 lines (55 loc) · 1.18 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
{
"name": "@iamnapo/sort",
"version": "2.3.3",
"description": "Sorting comparators so you don't have to remember what to substract from what",
"keywords": [
"comparator",
"compare",
"date",
"number",
"sort",
"string"
],
"homepage": "https://github.com/iamnapo/sort#readme",
"bugs": {
"url": "https://github.com/iamnapo/sort/issues"
},
"repository": "github:iamnapo/sort",
"license": "MIT",
"author": {
"name": "Napoleon-Christos Oikonomou",
"email": "napoleonoikon@gmail.com",
"url": "https://iamnapo.me"
},
"type": "module",
"exports": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist",
"!dist/tests"
],
"scripts": {
"build": "tsc",
"lint": "eslint . --ext .ts --cache",
"prepare": "npm run build",
"test": "npm run lint && npm run build && node --test dist/tests/*.js"
},
"eslintConfig": {
"extends": "iamnapo/typescript",
"ignorePatterns": "dist"
},
"devDependencies": {
"@iamnapo/tsconfig": "^5.0.0",
"@types/node": "^20.12.12",
"eslint": "^8.57.0",
"eslint-config-iamnapo": "^36.0.0",
"typescript": "^5.4.5"
},
"engines": {
"node": ">=14"
},
"publishConfig": {
"access": "public",
"provenance": true
}
}