-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
39 lines (39 loc) · 1.55 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
{
"author": "Steven Olmsted <[email protected]>",
"bugs": "https://github.com/ibi-group/isotropic-natural-sort/issues",
"dependencies": {
"isotropic-character-fold": "~0.8.0",
"isotropic-error": "~0.13.0"
},
"description": "A configurable natural sorting implementation",
"devDependencies": {
"isotropic-dev-dependencies": "~0.3.0"
},
"engines": {
"node": "^22.5.1",
"npm": "^10.8.2"
},
"files": [
"lib"
],
"homepage": "https://github.com/ibi-group/isotropic-natural-sort",
"keywords": [
"isotropic"
],
"license": "BSD-3-Clause",
"main": "lib/natural-sort.js",
"name": "isotropic-natural-sort",
"repository": "github:ibi-group/isotropic-natural-sort",
"scripts": {
"build": "cross-env BABEL_ENV=node-minify babel --config-file ./node_modules/isotropic-dev-dependencies/config/babel.json js -d lib --delete-dir-on-start",
"lint": "eslint js test",
"postprepare": "node ./node_modules/isotropic-dev-dependencies/lib/install-git-hooks.js",
"posttest": "[ -z \"$npm_config_coverage\" ] || c8 -c ./node_modules/isotropic-dev-dependencies/config/c8.json check-coverage",
"prepare": "npm run build",
"prepublishOnly": "npm test --coverage",
"pretest": "npm run lint",
"test": "cross-env BABEL_ENV=test c8 -c ./node_modules/isotropic-dev-dependencies/config/c8.json mocha --import=isotropic-dev-dependencies/lib/register-babel-loader.js"
},
"type": "module",
"version": "0.8.0"
}