UNPKG

haystack-core

Version:
84 lines (83 loc) 2.69 kB
{ "name": "haystack-core", "description": "Project Haystack Core", "keywords": [ "project haystack", "haystack", "core", "typescript" ], "license": "BSD-3-Clause", "author": "Gareth Johnson", "homepage": "https://github.com/j2inn/haystack-core", "email": "support@j2innovations.com", "version": "3.0.5", "module": "dist/index.es.js", "main": "dist/index.js", "types": "dist/index.d.ts", "repository": { "type": "git", "url": "https://github.com/j2inn/haystack-core" }, "scripts": { "watch": "nodemon --ext ts --ignore dist/ --ignore build/ --exec \"npm run lint && npm run test && npm run build\"", "lint": "eslint --ext .ts .", "format": "prettier-eslint \"./**/*.ts\" --write", "test": "jest", "coverage": "jest --coverage", "doc": "typedoc ./src --excludePrivate", "build": "npm run build:clean && tsc --project ./tsconfig.build.json && npx rollup --file=dist/index.es.js -- build/index.js && npx rollup --format=cjs --file=dist/index.js -- build/index.js && npx rollup --plugin=rollup-plugin-dts --file=dist/index.d.ts -- build/index.d.ts", "build:clean": "rimraf ./dist && rimraf ./build", "analyze": "webpack --profile --json > stats.json && webpack-bundle-analyzer stats.json", "server": "http-server", "bundle": "webpack", "start": "npm install && npm run test && npm run build && npm run bundle && npm run server", "circular": "madge --circular --extensions ts ./", "prepack": "npm run lint && npm test && npm run build", "checktypes": "tsc --noEmit", "perf:readgrid": "node ./perf/readGrid.js" }, "files": [ "dist/**/*" ], "config": { "unsafe-perm": true }, "devDependencies": { "@types/jest": "^29.5.2", "@types/lodash": "^4.14.195", "@types/luxon": "^3.3.0", "@types/moment-range": "^4.0.0", "@types/moment-timezone": "^0.5.30", "@types/node": "^22.10.3", "@typescript-eslint/eslint-plugin": "^8.19.0", "@typescript-eslint/parser": "^8.19.0", "eslint": "^8.43.0", "eslint-config-prettier": "^8.8.0", "eslint-plugin-prettier": "^4.2.1", "http-server": "^14.1.1", "jest": "^29.5.0", "lodash": "^4.17.21", "luxon": "^3.3.0", "madge": "^8.0.0", "moment-range": "^4.0.2", "moment-timezone": "^0.5.43", "nodemon": "^3.1.9", "npm-dts": "^1.3.12", "npm-dts-webpack-plugin": "^1.3.12", "prettier": "^2.8.8", "prettier-eslint": "^15.0.1", "prettier-eslint-cli": "^7.1.0", "rimraf": "^6.0.1", "rollup": "^3.25.1", "rollup-plugin-dts": "^5.3.0", "ts-jest": "^29.1.0", "ts-loader": "^9.4.3", "ts-node": "^10.9.1", "typedoc": "^0.27.6", "typescript": "^5.1.3", "typescript-eslint-parser": "^22.0.0", "webpack": "^5.88.0", "webpack-cli": "^6.0.1" } }