UNPKG

djembe

Version:

A rhythm maker which emits any data with the given rhythm periodically

51 lines (50 loc) 1.48 kB
{ "name": "djembe", "version": "2.0.0", "description": "A rhythm maker which emits any data with the given rhythm periodically", "main": "dist/bundle.umd.js", "module": "dist/bundle.esm.js", "repository": { "type": "git", "url": "git+https://github.com/M-Nasab/Djembe.git" }, "scripts": { "clean": "rimraf dist/*", "build": "npm run clean && run-p build:*", "build:development": "cross-env NODE_ENV=development rollup -c", "build:production": "cross-env NODE_ENV=production rollup -c", "lint": "eslint 'src/**/*.js'", "lint:fix": "eslint --fix 'src/**/*.js'", "test": "jest", "test:watch": "jest --watch", "dev": "npm run test:watch", "prepublishOnly": "npm run build", "coverage": "jest --coverage" }, "keywords": [ "Rhythm", "Event Emitter" ], "author": "Mostafa Amini Nasab <mostafa.amini.nasab@gmail.com>", "license": "MIT", "devDependencies": { "@babel/core": "^7.13.10", "@babel/preset-env": "^7.13.10", "@rollup/plugin-babel": "^5.3.0", "@rollup/plugin-commonjs": "^17.1.0", "@rollup/plugin-node-resolve": "^11.2.0", "babel-jest": "^26.6.3", "cross-env": "^7.0.3", "eslint": "^7.22.0", "eslint-plugin-jest": "^24.3.2", "jest": "^26.6.3", "npm-run-all": "^4.1.5", "rimraf": "^3.0.2", "rollup": "^2.42.1", "rollup-plugin-filesize": "^9.1.1", "rollup-plugin-terser": "^7.0.2" }, "dependencies": { "epicles": "^2.1.2" } }