UNPKG

react-custom-chips

Version:
92 lines (91 loc) 2.36 kB
{ "name": "react-custom-chips", "version": "1.0.1", "description": "A very lightweight and custom react chips", "keywords": [ "react", "chips", "input", "react-chips" ], "license": "MIT", "repository": { "type": "git", "url": "https://github.com/lowe1111/react-custom-chips.git" }, "main": "build/index.js", "peerDependencies": { "react": "^16.10.2", "react-dom": "^16.10.2" }, "scripts": { "build": "NODE_ENV=production rollup -c", "watch": "rollup -cw", "lint": "tslint --project tsconfig.json --type-check", "test": "jest --coverage --coverageReporters=text-lcov", "test:watch": "jest --watch", "test:update": "jest --updateSnapshot" }, "author": { "name": "Lorenz Weiß", "email": "lorenz.weis@gmail.com" }, "devDependencies": { "@types/enzyme": "^3.10.3", "@types/enzyme-adapter-react-16": "^1.0.5", "@types/jest": "^24.0.18", "@types/react": "^16.9.5", "@types/react-dom": "^16.9.1", "@types/react-router-dom": "^4.3.5", "enzyme": "^3.10.0", "enzyme-adapter-react-16": "^1.14.0", "enzyme-to-json": "^3.4.2", "jest": "^24.9.0", "node-sass": "^4.12.0", "prettier": "^1.18.2", "react": "^16.10.2", "react-dom": "^16.10.2", "rollup": "^1.23.1", "rollup-plugin-commonjs": "^10.1.0", "rollup-plugin-livereload": "^1.0.4", "rollup-plugin-node-resolve": "^5.2.0", "rollup-plugin-postcss": "^2.0.3", "rollup-plugin-replace": "^2.0.0", "rollup-plugin-serve": "^1.0.1", "rollup-plugin-typescript": "^1.0.1", "rollup-plugin-uglify": "^6.0.3", "rollup-watch": "^4.3.1", "tslib": "^1.10.0", "ts-jest": "^23.10.5", "ts-loader": "^6.2.0", "tslint": "^5.20.0", "tslint-eslint-rules": "^5.4.0", "tslint-react": "^3.6.0", "typescript": "^3.6.3" }, "jest": { "verbose": true, "transform": { "^.+\\.tsx?$": "ts-jest" }, "moduleNameMapper": { ".scss$": "../test/SassStub.ts" }, "testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$", "moduleFileExtensions": [ "ts", "tsx", "js", "jsx", "json" ], "collectCoverage": true, "coverageDirectory": "dist/coverage", "coverageReporters": [ "json", "lcov", "text", "text-summary" ] } }