UNPKG

react-calendar-heatmap

Version:

A calendar heatmap component built on SVG, inspired by Github's commit calendar graph.

81 lines (80 loc) 2.58 kB
{ "name": "react-calendar-heatmap", "version": "1.10.0", "description": "A calendar heatmap component built on SVG, inspired by Github's commit calendar graph.", "author": "Kevin Qi", "main": "dist/react-calendar-heatmap.cjs.js", "module": "dist/react-calendar-heatmap.esm.js", "browser": "dist/react-calendar-heatmap.umd.js", "style": "dist/styles.css", "files": [ "dist" ], "repository": { "type": "git", "url": "https://github.com/kevinsqi/react-calendar-heatmap.git" }, "license": "MIT", "keywords": [ "calendar", "react", "react-component", "svg" ], "scripts": { "build": "npm-run-all clean build:css build:js", "build:css": "postcss src/styles.css --use autoprefixer -d dist/ --no-map", "build:js": "cross-env NODE_ENV=production rollup -c", "clean": "rimraf dist", "format": "prettier --write 'src/**/*' 'demo/src/**/*'", "lint": "eslint src", "prepare": "npm-run-all clean build", "test": "jest --config jest.config.js --coverage", "test:watch": "jest --config jest.config.js --watch", "start": "npm-run-all --parallel start:js start:css", "start:css": "postcss src/styles.css --use autoprefixer -d dist/ --no-map --watch", "start:js": "cross-env NODE_ENV=development rollup -c -w" }, "peerDependencies": { "react": ">=0.14.0" }, "dependencies": { "memoize-one": "^5.0.0", "prop-types": "^15.6.2" }, "devDependencies": { "@babel/cli": "^7.1.2", "@babel/core": "^7.1.2", "@babel/plugin-external-helpers": "^7.0.0", "@babel/plugin-proposal-class-properties": "^7.1.0", "@babel/preset-env": "^7.1.0", "@babel/preset-react": "^7.0.0", "autoprefixer": "^9.1.3", "babel-core": "^7.0.0-bridge.0", "babel-eslint": "^10.0.2", "babel-jest": "^24.0.0", "cross-env": "^5.2.0", "enzyme": "^3.10.0", "enzyme-adapter-react-16": "^1.3.1", "eslint": "^5.16.0", "eslint-config-airbnb": "^17.1.1", "eslint-config-prettier": "^6.0.0", "eslint-plugin-import": "^2.18.2", "eslint-plugin-jsx-a11y": "^6.2.3", "eslint-plugin-react": "^7.14.3", "jest": "^24.0.0", "npm-run-all": "^4.1.3", "postcss-cli": "^6.0.0", "prettier": "^1.14.2", "react": "^16.4.2", "react-dom": "^16.4.2", "react-test-renderer": "^16.4.2", "rimraf": "^2.0.0", "rollup": "^1.6.0", "rollup-plugin-babel": "4", "rollup-plugin-commonjs": "^10.0.0", "rollup-plugin-node-resolve": "^5.0.1", "rollup-plugin-replace": "^2.0.0", "rollup-plugin-uglify": "^6.0.0" } }