|
5 | 5 | "publishConfig": { |
6 | 6 | "access": "public" |
7 | 7 | }, |
| 8 | + "homepage": "https://letsflow.io/jmespath", |
8 | 9 | "contributors": [ |
9 | 10 | { |
10 | 11 | "name": "Arnold Daniels", |
|
43 | 44 | "license": "MPL-2.0", |
44 | 45 | "engines": { |
45 | 46 | "node": ">=14.0.0" |
46 | | - } |
| 47 | + }, |
| 48 | + "scripts": { |
| 49 | + "lint": "npx eslint --ignore-path .eslintignore './{src,test}/**/*.{js,ts}'", |
| 50 | + "lint:fix": "npm run lint -- --fix", |
| 51 | + "prebuild": "npx rimraf dist", |
| 52 | + "build": "npx tsc --outDir dist/lib -d --module commonjs && npx rollup -c rollup.config.ts", |
| 53 | + "perf": "node --expose-gc scripts/perf.js", |
| 54 | + "start": "npx rollup -c rollup.config.ts -w", |
| 55 | + "test": "vitest --run", |
| 56 | + "test:watch": "vitest", |
| 57 | + "test:prod": "npm run lint && npm run test", |
| 58 | + "coverage": "vitest run --coverage", |
| 59 | + "deploy-docs": "ts-node scripts/gh-pages-publish", |
| 60 | + "report-coverage": "cat ./coverage/lcov.info | coveralls", |
| 61 | + "precommit": "lint-staged", |
| 62 | + "prepack": "npx clear-package-json package.json --output ./package.json" |
| 63 | + }, |
| 64 | + "devDependencies": { |
| 65 | + "@rollup/plugin-json": "^4.1.0", |
| 66 | + "@rollup/plugin-node-resolve": "^13.0.0", |
| 67 | + "@rollup/plugin-terser": "^0.4.0", |
| 68 | + "@rollup/plugin-typescript": "^8.2.1", |
| 69 | + "@typescript-eslint/eslint-plugin": "^4.26.0", |
| 70 | + "@typescript-eslint/parser": "^4.26.0", |
| 71 | + "@vitest/coverage-v8": "^2.1.8", |
| 72 | + "clean-publish": "^3.4.5", |
| 73 | + "coveralls-next": "^4.2.0", |
| 74 | + "eslint": "^7.27.0", |
| 75 | + "eslint-config-prettier": "^8.6.0", |
| 76 | + "eslint-plugin-prettier": "^3.4.1", |
| 77 | + "husky": "^6.0.0", |
| 78 | + "lint-staged": "^11.0.0", |
| 79 | + "prettier": "^2.3.0", |
| 80 | + "prettier-eslint": "^12.0.0", |
| 81 | + "rimraf": "^3.0.2", |
| 82 | + "rollup": "^2.50.5", |
| 83 | + "rollup-plugin-typescript2": "^0.34.1", |
| 84 | + "shelljs": "^0.8.4", |
| 85 | + "tinybench": "^2.5.1", |
| 86 | + "ts-node": "^10.9.1", |
| 87 | + "typescript": "^4.3.2", |
| 88 | + "vitest": "^2.1.8" |
| 89 | + } |
47 | 90 | } |
0 commit comments