UNPKG

downsample

Version:

Provides functions for time series data downsampling for visual representation

101 lines (100 loc) 2.52 kB
{ "name": "downsample", "version": "1.4.0", "description": "Provides functions for time series data downsampling for visual representation", "main": "index.js", "types": "index.d.ts", "scripts": { "build": "rollup -c", "build:watch": "rollup -cw", "clean": "rm -rf dist", "lint": "eslint . --ext .ts,.tsx,.js,.jsx", "lint:dist": "eslint dist --ext .d.ts --fix", "lint:fix": "npm run lint --fix", "release": "./scripts/release.sh -d", "test": "jest", "test:watch": "jest --watch" }, "repository": { "type": "git", "url": "https://github.com/janjakubnanista/downsample.git" }, "keywords": [ "downsample", "data", "downsampling", "charts", "charting", "plot", "plotting" ], "author": "Jan Jakub Nanista <jan.jakub.nanista@gmail.com>", "license": "MIT", "bugs": { "url": "https://github.com/janjakubnanista/downsample/issues" }, "files": [ "index.js", "index.d.ts", "**/*.js", "**/*.d.ts" ], "homepage": "https://github.com/janjakubnanista/downsample", "devDependencies": { "@babel/core": "^7.10.2", "@babel/preset-typescript": "^7.10.1", "@types/jest": "^25.2.3", "@types/node": "^14.0.11", "@typescript-eslint/eslint-plugin": "^3.1.0", "@typescript-eslint/parser": "^3.1.0", "@wessberg/rollup-plugin-ts": "^1.2.17", "babel-core": "^6.26.3", "babel-eslint": "^10.1.0", "babel-loader": "^8.1.0", "babel-preset-env": "^1.7.0", "babel-preset-react": "^6.24.1", "eslint": "^7.2.0", "eslint-config-prettier": "^6.11.0", "eslint-plugin-prettier": "^3.1.3", "eslint-plugin-react": "^7.20.0", "eslint-plugin-sort-imports-es6-autofix": "^0.5.0", "husky": "^4.2.5", "jest": "^26.0.1", "lint-staged": "^10.2.9", "prettier": "^2.0.5", "rollup": "^2.14.0", "rollup-plugin-commonjs": "^10.1.0", "rollup-plugin-node-resolve": "^5.2.0", "ts-jest": "^26.1.0", "ts-loader": "^7.0.5", "ts-node": "^8.10.2", "ts-type-checked": "^0.3.5", "ttypescript": "^1.5.10", "typescript": "^3.9.5" }, "husky": { "hooks": { "pre-commit": "lint-staged" } }, "jest": { "preset": "ts-jest", "testMatch": [ "**/*.spec.ts" ], "testPathIgnorePatterns": [ "<rootDir>/test", "/node_modules/" ], "globals": { "ts-jest": { "compiler": "ttypescript" } } }, "lint-staged": { "*.{js,ts}(x)?": [ "eslint --fix" ] } }