-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.95 KB
/
Copy pathpackage.json
File metadata and controls
69 lines (69 loc) · 1.95 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "sort-objects-array",
"version": "4.1.0",
"description": "Simple module to sort an array of objects by a property without mutating the original array.",
"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"
},
"./package.json": "./package.json"
},
"sideEffects": false,
"files": [
"dist",
"LICENSE",
"README.md"
],
"scripts": {
"clean": "rimraf dist",
"build": "npm run clean && tsup",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:integration": "npm run build && npm run test:integration:cjs && npm run test:integration:esm",
"test:integration:cjs": "cd test/.integration/cjs && node test.cjs",
"test:integration:esm": "cd test/.integration/esm && node test.mjs",
"lint": "eslint --ext .ts src/",
"format": "prettier --write \"src/**/*.ts\"",
"benchmark": "npm run build && tsx benchmark/basic.bench.ts",
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run test:integration"
},
"keywords": [
"sort",
"array",
"object",
"order"
],
"author": "Juan Convers",
"homepage": "https://github.com/webdacjs/sort-objects-array#readme",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/webdacjs/sort-objects-array.git"
},
"devDependencies": {
"@types/node": "^20.9.0",
"@typescript-eslint/eslint-plugin": "^6.10.0",
"@typescript-eslint/parser": "^6.10.0",
"@vitest/coverage-v8": "^3.1.2",
"eslint": "^8.53.0",
"prettier": "^3.0.3",
"rimraf": "^5.0.5",
"tsup": "^8.4.0",
"typescript": "^5.2.2",
"vitest": "^3.1.2",
"tsx": "^4.7.0"
},
"bugs": {
"url": "https://github.com/webdacjs/sort-objects-array/issues"
},
"engines": {
"node": ">=18.0.0"
}
}