UNPKG

@haraldlons/reactjs-tag-input

Version:

A simple (but fully customizable) react tag input component built using styled components.

56 lines (55 loc) 1.38 kB
{ "name": "@haraldlons/reactjs-tag-input", "version": "2.0.20", "repository": "https://github.com/haraldlons/react-tag-input", "license": "MIT", "keywords": [ "react", "tag", "tags", "input", "pills", "pill", "javascript" ], "main": "dist/index.js", "module": "dist/index.js", "types": "src/index.d.ts", "files": [ "dist", "src/index.d.ts" ], "devDependencies": { "babel-cli": "^6.26.0", "enzyme": "^3.8.0", "enzyme-adapter-react-16": "^1.7.1", "gh-pages": "^2.0.1", "react": "^16 || ^17", "react-dom": "^16 || ^17", "react-scripts": "1.1.4", "react-test-renderer": "^16.3.2" }, "peerDependencies": { "react": "^16.3.2 || ^17", "react-dom": "^16.3.2 || ^17" }, "scripts": { "start": "react-scripts start", "build-examples": "react-scripts build", "test": "react-scripts test --env=jsdom", "coverage": "npm run test -- --coverage", "eject": "react-scripts eject", "build": "rm -rf dist && NODE_ENV=production babel src/lib --out-dir dist --copy-files --ignore __tests__,spec.js,test.js,__snapshots__", "predeploy": "npm run build-examples", "deploy": "gh-pages -d build" }, "dependencies": { "prop-types": "^15.6.2", "styled-components": "^4.1.3" }, "jest": { "collectCoverageFrom": [ "src/lib/**/*.{js}" ] } }