react-auto-suggest
Version:
React auto-suggest component
59 lines (58 loc) • 1.72 kB
JSON
{
"name": "react-auto-suggest",
"description": "React auto-suggest component",
"main": "index.js",
"version": "0.0.12",
"repository": {
"type": "git",
"url": "https://github.com/tomkp/react-auto-suggest"
},
"author": "tomkp <tom@tomkp.com>",
"license": "MIT",
"keywords": [
"react",
"react-component",
"auto-suggest",
"react-auto-suggest",
"es6"
],
"bugs": {
"url": "https://github.com/tomkp/react-auto-suggest/issues"
},
"homepage": "https://github.com/tomkp/react-auto-suggest",
"dependencies": {
"jsonp": "^0.2.0",
"react": "^0.14.3"
},
"devDependencies": {
"babel": "^6.1.18",
"babel-core": "^6.2.1",
"babelify": "^7.2.0",
"browserify": "^12.0.1",
"chai": "^3.4.1",
"coveralls": "^2.11.4",
"mochify": "^2.14.2",
"mochify-istanbul": "^2.3.0",
"react-tools": "^0.13.3",
"watchify": "^3.6.1"
},
"scripts": {
"compile": "babel -d lib/ src/",
"compile:watch": "babel -w -d lib/ src/",
"prepublish": "npm run compile",
"test": "mochify -R spec",
"test:watch": "npm run compile:watch & mochify -R spec --watch",
"test:coverage": "node cover.js && cat lcov.info | coveralls && rm lcov.info",
"demo": "npm run compile && browserify demo/Example.js -t -o demo/bundle.js",
"demo:watch": "npm run compile:watch & watchify demo/Example.js -t -o demo/bundle.js",
"demo:publish": "npm run compile && browserify demo/Example.js -t -o demo/bundle.js && surge demo changeable-heart.surge.sh",
"release:patch": "npm test && npm run compile && npm version patch && git push && npm publish"
},
"browserify": {
"transform": [
[
"babelify"
]
]
}
}