UNPKG

bqpjs

Version:
46 lines (45 loc) 1.09 kB
{ "name": "bqpjs", "version": "0.1.1", "description": "Boolean Queary Parser JS", "files": [ "dist/bundle.cjs.js", "dist/bundle.esm.js" ], "main": "dist/bundle.cjs.js", "module": "dist/bundle.esm.js", "scripts": { "build": "rollup --config", "build:watch": "npm run build -- --watch", "lint": "eslint src", "prepare": "npm run build", "prepublishOnly": "npm test && npm run lint", "preversion": "npm test && npm run lint", "version": "npm run build", "postversion": "git push && git push --tags", "test": "jest", "test:update": "jest -u" }, "author": "frederickf <ffeibel@gmail.com>", "keywords": [ "Boolean", "JavaScript", "parse", "search" ], "license": "MIT", "repository": { "type": "git", "url": "https://github.com/frederickf/bqpjs.git" }, "devDependencies": { "eslint": "^6.5.1", "jest": "^24.9.0", "rollup": "^1.12.3", "rollup-plugin-commonjs": "^10.1.0", "rollup-plugin-node-resolve": "^5.2.0" }, "dependencies": { "compose-function": "^3.0.3" } }