UNPKG

curray

Version:

Curray is an extension library for the native JavaScript Array object.

72 lines (71 loc) 1.91 kB
{ "name": "curray", "version": "1.0.12", "description": "Curray is an extension library for the native JavaScript Array object.", "cdn": "dist/index.umd.js", "main": "dist/index.js", "types": "types/index.d.ts", "unpkg": "dist/index.umd.js", "module": "dist/index.esm.js", "jsdelivr": "dist/index.umd.js", "umd:main": "dist/index.umd.js", "files": [ "dist/", "types/" ], "exports": { ".": [ { "import": "./dist/index.mjs", "require": "./dist/index.cjs", "default": "./dist/index.js" }, "./dist/index.js" ] }, "devDependencies": { "@rollup/plugin-terser": "^0.4.4", "@types/eslint": "^8.56.2", "@types/jest": "^29.5.11", "@types/prettier": "^3.0.0", "@typescript-eslint/eslint-plugin": "^6.20.0", "@typescript-eslint/parser": "^6.20.0", "eslint": "^8.56.0", "eslint-config-prettier": "^9.1.0", "eslint-plugin-prettier": "^5.1.3", "jest": "^29.7.0", "prettier": "^3.2.4", "rollup": "^4.9.6", "rollup-plugin-typescript2": "^0.36.0", "ts-jest": "^29.1.2", "ts-jest-resolver": "^2.0.1", "typedoc": "^0.25.7", "typedoc-plugin-markdown": "^3.17.1", "typescript": "^5.3.3" }, "scripts": { "doc": "typedoc src/index.ts", "test": "jest", "lint": "eslint \"*/**/*.{ts,js,json}\"", "lint:fix": "eslint \"*/**/*.{ts,js,json}\" --fix", "build": "rollup --config ./rollup.config.mjs", "prepublishOnly": "npm run doc && npm run lint && npm run test && npm run build" }, "repository": { "type": "git", "url": "git+https://github.com/rogerfar/curray.git" }, "keywords": [ "typescript", "linq", "array" ], "author": { "name": "Roger Far" }, "license": "MIT", "bugs": { "url": "https://github.com/rogerfar/curray.git/issues" }, "homepage": "https://github.com/rogerfar/curray.git#readme" }