{ "name": "fast-sort", "version": "3.4.0", "description": "Fast easy to use and flexible sorting with TypeScript support", "author": "Stefan Novakovic ", "contributors": [ "Linus Unnebäck: https://github.com/LinusU", "Luca Ban: https://github.com/mesqueeb", "Tony Gutierrez: https://github.com/tony-gutierrez" ], "license": "MIT", "homepage": "https://github.com/snovakovic/fast-sort", "main": "dist/sort.cjs.js", "module": "dist/sort.mjs", "types": "dist/sort.d.ts", "exports": { ".": { "require": "./dist/sort.cjs.js", "import": "./dist/sort.mjs", "types": "./dist/sort.d.ts" }, "./dist/sort.min": "./dist/sort.min.js", "./dist/sort.js": "./dist/sort.js" }, "scripts": { "test": "TS_NODE_COMPILER_OPTIONS='{\"module\":\"commonjs\"}' mocha -r ts-node/register test/*.spec.ts", "test:watch": "watch 'npm run test' ./src", "test:integration:dist": "node test/integration/dist.test.js", "test:integration:npm": "node test/integration/npm.test.js", "build": "npm run test && rm -rf dist && rollup -c", "prepublishOnly": "npm run build && npm run test:integration:dist", "postpublish": "npm run test:integration:npm" }, "repository": { "type": "git", "url": "git+https://github.com/snovakovic/fast-sort.git" }, "bugs": { "url": "https://github.com/snovakovic/fast-sort/issues" }, "keywords": [ "sort", "sortBy", "order", "orderBy", "array sort", "object sort", "natural sort" ], "dependencies": {}, "devDependencies": { "@types/chai": "^4.2.15", "@types/mocha": "^8.2.1", "@typescript-eslint/eslint-plugin": "^4.17.0", "@typescript-eslint/parser": "^4.17.0", "chai": "^4.3.3", "eslint": "^7.21.0", "eslint-config-airbnb-base": "^14.2.1", "eslint-plugin-import": "^2.22.1", "mocha": "^10.2.0", "rollup": "^2.41.1", "rollup-plugin-copy": "^3.4.0", "rollup-plugin-typescript2": "^0.30.0", "rollup-plugin-uglify": "^6.0.4", "ts-node": "^9.1.1", "tslib": "^2.1.0", "typescript": "^4.2.3", "watch": "^1.0.2" } }