Files
elastiq/package.json
2016-05-19 14:15:53 -07:00

57 lines
1.5 KiB
JSON

{
"name": "esqueue",
"version": "0.5.0",
"description": "Job queue, powered by Elasticsearch",
"main": "lib/index.js",
"scripts": {
"build": "rm -rf lib && babel src --out-dir lib",
"coverage": "nyc report --reporter=text-lcov > coverage.lcov && codecov",
"prepublish": "in-publish && npm run test || not-in-publish",
"test": "npm run build && npm run unit",
"unit": "nyc --require babel-core/register mocha test/src/**"
},
"author": "Joe Fleming (https://github.com/w33ble)",
"keywords": [
"job",
"queue",
"worker",
"elasticsearch"
],
"repository": {
"type": "git",
"url": "https://github.com/w33ble/esqueue.git"
},
"license": "Apache-2.0",
"engines": {
"node": ">=4.3.0"
},
"devDependencies": {
"@elastic/eslint-config-kibana": "0.0.3",
"babel-cli": "~6.7.5",
"babel-core": "~6.7.6",
"babel-eslint": "~4.1.8",
"babel-plugin-add-module-exports": "~0.1.2",
"babel-preset-es2015": "~6.6.0",
"codecov": "~1.0.1",
"eslint": "~1.10.3",
"eslint-plugin-mocha": "~1.1.0",
"eslint-plugin-react": "~4.2.3",
"expect.js": "~0.3.1",
"lodash": "~4.11.1",
"mocha": "~2.4.5",
"nyc": "~6.4.2",
"proxyquire": "~1.7.4",
"sinon": "~1.17.3"
},
"dependencies": {
"debug": "~2.2.0",
"elasticsearch": "~11.0.1",
"error": "~7.0.2",
"in-publish": "~2.0.0",
"lodash.isplainobject": "~4.0.4",
"lodash.omit": "~4.2.1",
"moment": "~2.10.6",
"puid": "~1.0.5"
}
}