-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
108 lines (108 loc) · 2.69 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"author": "Cosimo Chellini <[email protected]>",
"bugs": {
"url": "https://github.com/cosimochellini/sort-es/issues"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"dependencies": {},
"description": "Blazing fast, tree-shakeable, type-safe, modern utility library to sort any type of array in less than 1 KB!",
"devDependencies": {
"@babel/eslint-parser": "^7.25.8",
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@rollup/plugin-commonjs": "^23.0.4",
"@rollup/plugin-node-resolve": "^15.3.0",
"@types/chai": "^4.3.19",
"@types/mocha": "^10.0.9",
"@types/node": "^22.7.6",
"@typescript-eslint/eslint-plugin": "^7.13.1",
"@typescript-eslint/parser": "^7.13.1",
"chai": "^4.3.10",
"cosmiconfig": "^9.0.0",
"cross-env": "^7.0.3",
"date-fns": "^3.3.1",
"eslint": "^8.56.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsx-a11y": "^6.10.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.37.1",
"husky": "^8.0.3",
"mocha": "^10.7.3",
"nyc": "^15.1.0",
"rollup": "^2.79.1",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.34.1",
"sort-es": "^1.7.12",
"source-map-support": "^0.5.21",
"terser": "^5.36.0",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.2",
"tslint-config-prettier": "^1.18.0",
"typescript": "^5.6.3"
},
"files": [
"lib/**/*"
],
"homepage": "https://sort-es.netlify.app",
"husky": {
"hooks": {
"pre-commit": "yarn lint",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"keywords": [
"sort",
"sort-es",
"sort functions",
"es",
"es6",
"module",
"utility",
"library",
"sorting",
"npm",
"module",
"node",
"javascript",
"typescript",
"array",
"list"
],
"license": "MIT",
"main": "lib/index.cjs.js",
"module": "lib/index.esm.js",
"name": "sort-es",
"nyc": {
"extension": [
".ts",
".tsx"
],
"exclude": [
"**/*.d.ts"
],
"reporter": [
"html"
],
"all": true
},
"repository": {
"type": "git",
"url": "git+https://github.com/cosimochellini/sort-es.git"
},
"scripts": {
"build": "rollup -c rollup.config.ts",
"test": "nyc --reporter=lcov mocha --recursive --require ts-node/register --exit test/*.ts",
"test:local": "nyc mocha --recursive --require ts-node/register --exit test/*.ts",
"lint": "eslint src/*.ts",
"release": "standard-version",
"prepare": "husky install"
},
"sideEffects": false,
"types": "lib/src",
"version": "1.7.13"
}