package.json
{
"name": "ac",
"version": "2.0.0",
"description": "Autocomplete",
"main": "index.js",
"scripts": {
"test": "istanbul cover test/*.js",
"nocov": "node test/*.js",
"coverage": "istanbul cover test/*.js && istanbul check-coverage --statements 100 --functions 100 --lines 100 --branches 100",
"codeclimate": "CODECLIMATE_REPO_TOKEN=4cf72310af534f72fcd2829fa59235f1e3311198cb6b6f48a6aca9a19711882d ./node_modules/codeclimate-test-reporter/bin/codeclimate.js < ./coverage/lcov.info",
"jshint": "jshint -c .jshintrc --exclude-path .gitignore .",
"start": "node examples/server.js"
},
"pre-commit": [
"jshint",
"cover"
],
"repository": {
"type": "git",
"url": "https://github.com/nelsonic/ac.git"
},
"keywords": [
"Autocomplete"
],
"author": "nelsonic <nodecoder@gmail.com> (https://github.com/nelsonic)",
"license": "MIT",
"bugs": {
"url": "https://github.com/nelsonic/ac/issues"
},
"homepage": "https://github.com/nelsonic/ac",
"devDependencies": {
"codeclimate-test-reporter": "0.5.0",
"istanbul": "^0.4.5",
"level": "^3.0.1",
"pre-commit": "1.2.2"
},
"dependencies": {
},
"pre-commit": [
"jshint",
"coverage",
"codeclimate"
],
"engines": {
"node": ">= 8"
}
}