UNPKG

react-native-particles

Version:
64 lines (63 loc) 1.56 kB
{ "name": "react-native-particles", "version": "0.0.8", "description": "Declarative particle system for react native", "main": "index.js", "scripts": { "test": "jest", "prettier": "prettier --config --write .prettierrc \"{,!(node_modules)/**/}*.{js,jsx}\"", "test:coverage": "npm run test -- --coverage", "test:watch": "npm run test -- --watch" }, "repository": { "type": "git", "url": "git+https://github.com/nanndoj/react-native-particles.git" }, "keywords": [ "particles", "emitter", "react-native", "declarative", "performant", "confetti", "fireworks" ], "author": "Fernando Santos <nanndoj@gmail.com>", "license": "MIT", "bugs": { "url": "https://github.com/nanndoj/react-native-particles/issues" }, "homepage": "https://github.com/nanndoj/react-native-particles#readme", "dependencies": { "lodash.debounce": "^4.0.8" }, "devDependencies": { "@babel/core": "^7.0.0-beta.55", "babel-jest": "^23.4.2", "babel-preset-react-native": "^4.0.0", "husky": "^1.0.0-rc.13", "jest": "^23.4.2", "prettier": "^1.14.0", "react": "^16.4.2", "react-native": "^0.61.5", "react-test-renderer": "^16.4.2" }, "peerDependencies": { "react-native": ">=0.20.0" }, "jest": { "preset": "react-native", "collectCoverageFrom": [ "**/*.js" ], "modulePathIgnorePatterns": [ "<rootDir>/Example" ] }, "husky": { "hooks": { "pre-commit": "npm run prettier", "pre-push": "npm test" } } }