UNPKG

tokensearch.js

Version:
48 lines (47 loc) 1.22 kB
{ "name": "tokensearch.js", "version": "0.8.0", "description": "Substring token search", "main": "./lib/tokensearch.js", "author": { "name": "Michael Vogt", "email": "michael@neeo.com" }, "repository": { "type": "git", "url": "http://github.com/neophob/tokensearch.js.git" }, "keywords": [ "string search", "token", "substring", "json", "search", "collection" ], "license": "MIT", "devDependencies": { "chai": "^4.0.0", "istanbul": "^0.4.5", "jshint": "~2.9.1", "mocha": "^3.4.2", "pre-commit": "~1.1.2" }, "engines": { "node": ">=6.0.0" }, "bugs": { "url": "https://github.com/neophob/tokensearch.js/issues" }, "scripts": { "test": "node_modules/mocha/bin/_mocha -- \"test/**/*.js\"", "jshint": "jshint --verbose ./lib/tokensearch.js", "coverage": "istanbul cover --hook-run-in-context ./node_modules/mocha/bin/_mocha -- --reporter list && istanbul check-coverage --statements 80 --functions 80 --lines 80 --branches 80", "release": "npm test && npm version patch -m 'Upgrade version to %s' && npm publish && git push --tags" }, "pre-commit": [ "jshint", "test", "coverage" ] }