-
Notifications
You must be signed in to change notification settings - Fork 64
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.24 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.24 KB
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
{
"name": "thenby",
"version": "1.4.1",
"description": "Micro library for sorting arrays using the firstBy().thenBy().thenBy() syntax",
"main": "thenBy.module.js",
"module": "thenBy.esm.js",
"types": "thenBy.module.d.ts",
"exports": {
".": {
"import": {
"types": "./thenBy.module.d.ts",
"default": "./thenBy.esm.js"
},
"require": {
"types": "./thenBy.module.d.ts",
"default": "./thenBy.module.js"
},
"default": "./thenBy.module.js"
}
},
"sideEffects": false,
"repository": {
"type": "git",
"url": "https://github.com/Teun/thenBy.js.git"
},
"keywords": [
"sort",
"order",
"sorting",
"arrays",
"multiple"
],
"files": [
"thenBy.module.js",
"thenBy.esm.js",
"thenBy.module.d.ts",
"thenBy.min.js"
],
"scripts": {
"test": "node build.mjs && npx tsc --project tsconfig.json && node --test --test-reporter=tap tests/thenby.tests.js",
"build": "node build.mjs"
},
"author": "Teun Duynstee",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/Teun/thenBy.js/issues"
},
"homepage": "https://github.com/Teun/thenBy.js",
"devDependencies": {
"terser": "^5.44.0",
"typescript": "^6.0.3"
}
}