|
| 1 | +{ |
| 2 | + "name": "@aboutbits/react-pagination", |
| 3 | + "version": "0.1.0", |
| 4 | + "description": "Pagination hooks for React", |
| 5 | + "main": "dist/index.js", |
| 6 | + "module": "dist/esm/index.js", |
| 7 | + "sideEffects": false, |
| 8 | + "scripts": { |
| 9 | + "build": "npm run build:node && npm run build:esm", |
| 10 | + "build:node": "tsc", |
| 11 | + "build:esm": "tsc --project tsconfig.esnext.json", |
| 12 | + "lint": "eslint --ext js,ts,tsx src", |
| 13 | + "lint:fix": "npm run lint -- --fix", |
| 14 | + "test": "jest --verbose --passWithNoTests", |
| 15 | + "prepare": "npm run build", |
| 16 | + "prepublishOnly": "npm run test && npm run lint", |
| 17 | + "version": "npm run test && npm run lint && git add -A src", |
| 18 | + "postversion": "git push && git push --tags" |
| 19 | + }, |
| 20 | + "repository": { |
| 21 | + "type": "git", |
| 22 | + "url": "git+https://github.com/aboutbits/react-pagination" |
| 23 | + }, |
| 24 | + "private": false, |
| 25 | + "keywords": [ |
| 26 | + "react", |
| 27 | + "pagination", |
| 28 | + "hooks" |
| 29 | + ], |
| 30 | + "author": "About Bits", |
| 31 | + "license": "MIT", |
| 32 | + "bugs": { |
| 33 | + "url": "https://github.com/aboutbits/react-pagination/issues" |
| 34 | + }, |
| 35 | + "homepage": "https://github.com/aboutbits/react-pagination#readme", |
| 36 | + "files": [ |
| 37 | + "readme.md", |
| 38 | + "dist/**/*" |
| 39 | + ], |
| 40 | + "publishConfig": { |
| 41 | + "access": "public" |
| 42 | + }, |
| 43 | + "devDependencies": { |
| 44 | + "@testing-library/jest-dom": "^5.11.10", |
| 45 | + "@testing-library/react": "^11.2.6", |
| 46 | + "@testing-library/react-hooks": "^5.1.1", |
| 47 | + "@types/jest": "^26.0.22", |
| 48 | + "@types/react": "^17.0.3", |
| 49 | + "@typescript-eslint/eslint-plugin": "^4.21.0", |
| 50 | + "@typescript-eslint/parser": "^4.21.0", |
| 51 | + "eslint": "^7.23.0", |
| 52 | + "eslint-config-prettier": "^8.1.0", |
| 53 | + "eslint-plugin-import": "^2.22.1", |
| 54 | + "eslint-plugin-jest": "^24.3.4", |
| 55 | + "eslint-plugin-prettier": "^3.3.1", |
| 56 | + "jest": "^26.6.3", |
| 57 | + "prettier": "^2.2.1", |
| 58 | + "react": "^17.0.2", |
| 59 | + "react-dom": "^17.0.2", |
| 60 | + "ts-jest": "^26.5.4", |
| 61 | + "typescript": "^4.2.4" |
| 62 | + }, |
| 63 | + "peerDependencies": { |
| 64 | + "react": "^16.0.0 || ^17.0.0" |
| 65 | + } |
| 66 | +} |
0 commit comments