|
| 1 | +{ |
| 2 | + "name": "react-xls", |
| 3 | + "version": "0.0.0", |
| 4 | + "description": "react-xls is the fastest in-browser excel ( .xls & .xlsx ) parser for React.", |
| 5 | + "author": "Bunlong <[email protected]>", |
| 6 | + "license": "MIT", |
| 7 | + "repository": { |
| 8 | + "type": "git", |
| 9 | + "url": "git+https://github.com/Bunlong/react-xls.git" |
| 10 | + }, |
| 11 | + "bugs": { |
| 12 | + "url": "https://github.com/Bunlong/react-xls.git/issues" |
| 13 | + }, |
| 14 | + "keywords": [ |
| 15 | + "react", |
| 16 | + "react-xls", |
| 17 | + "excel", |
| 18 | + "xls", |
| 19 | + "xlsx", |
| 20 | + "xlsb", |
| 21 | + "xlsm", |
| 22 | + "spreadsheet" |
| 23 | + ], |
| 24 | + "homepage": "", |
| 25 | + "main": "dist/react-xls.js", |
| 26 | + "module": "dist/react-xls.es.js", |
| 27 | + "jsnext:main": "dist/react-xls.es.js", |
| 28 | + "types": "dist/react-xls.d.ts", |
| 29 | + "@comment unpkg": "dist/react-xls.umd.js", |
| 30 | + "engines": { |
| 31 | + "node": ">=8", |
| 32 | + "npm": ">=5" |
| 33 | + }, |
| 34 | + "scripts": { |
| 35 | + "build": "rollup -c", |
| 36 | + "@comment prettier": "prettier --write './src/*.ts' './src/*.tsx' --config ./.prettierrc", |
| 37 | + "prettier": "prettier --write './src/*.ts' './src/utils/*.ts' --config ./.prettierrc", |
| 38 | + "lint:check": "eslint ./src --ext .tsx,.ts --report-unused-disable-directives", |
| 39 | + "bundlesize": "npm run build && bundlesize", |
| 40 | + "dev": "rollup -c -w", |
| 41 | + "test": "jest --runInBand", |
| 42 | + "prepare": "npm run build", |
| 43 | + "predeploy": "cd docs && npm install && npm run build", |
| 44 | + "deploy": "gh-pages -d docs/build" |
| 45 | + }, |
| 46 | + "devDependencies": { |
| 47 | + "@babel/core": "^7.15.0", |
| 48 | + "@babel/plugin-proposal-class-properties": "^7.14.5", |
| 49 | + "@babel/preset-env": "^7.15.0", |
| 50 | + "@rollup/plugin-babel": "^5.3.0", |
| 51 | + "@rollup/plugin-commonjs": "^20.0.0", |
| 52 | + "@rollup/plugin-node-resolve": "^13.0.4", |
| 53 | + "@types/react": "^17.0.17", |
| 54 | + "@types/react-dom": "^17.0.9", |
| 55 | + "@typescript-eslint/eslint-plugin": "^4.29.1", |
| 56 | + "@typescript-eslint/parser": "^4.29.1", |
| 57 | + "bundlesize": "^0.18.1", |
| 58 | + "eslint": "^7.32.0", |
| 59 | + "eslint-plugin-react": "^7.24.0", |
| 60 | + "eslint-plugin-react-hooks": "^4.2.0", |
| 61 | + "jest": "^27.0.6", |
| 62 | + "mutationobserver-shim": "^0.3.7", |
| 63 | + "prettier": "^2.3.2", |
| 64 | + "react": "^17.0.2", |
| 65 | + "react-dom": "^17.0.2", |
| 66 | + "rollup": "^2.56.2", |
| 67 | + "rollup-plugin-peer-deps-external": "^2.2.4", |
| 68 | + "rollup-plugin-terser": "^7.0.2", |
| 69 | + "rollup-plugin-typescript2": "^0.30.0", |
| 70 | + "ts-jest": "^27.0.4", |
| 71 | + "tslib": "^2.3.1", |
| 72 | + "typescript": "^4.3.5" |
| 73 | + }, |
| 74 | + "files": [ |
| 75 | + "dist" |
| 76 | + ], |
| 77 | + "bundlesize": [ |
| 78 | + { |
| 79 | + "path": "./dist/react-xls.es.js", |
| 80 | + "maxSize": "50 kB" |
| 81 | + } |
| 82 | + ], |
| 83 | + "peerDependencies": { |
| 84 | + "react": "^17.0.2", |
| 85 | + "react-dom": "^17.0.2" |
| 86 | + }, |
| 87 | + "browser": { |
| 88 | + "fs": false |
| 89 | + } |
| 90 | +} |
0 commit comments