57 lines
1.5 KiB
JSON
57 lines
1.5 KiB
JSON
{
|
|
"name": "esqueue",
|
|
"version": "1.0.0",
|
|
"description": "Job queue, powered by Elasticsearch",
|
|
"main": "lib/index.js",
|
|
"scripts": {
|
|
"build": "rm -rf lib && babel src --out-dir lib",
|
|
"package": "git checkout -B package-lib && npm run build && git add -f lib && git commit -m 'package lib' && echo Use npm to tag and publish",
|
|
"prepublish": "in-publish && npm run test || not-in-publish",
|
|
"test": "retire -n -p package.json && npm run build && npm run unit",
|
|
"unit": "nyc --require babel-core/register mocha test/src/**"
|
|
},
|
|
"author": "Elastic (https://github.com/elastic)",
|
|
"keywords": [
|
|
"job",
|
|
"queue",
|
|
"worker",
|
|
"elasticsearch"
|
|
],
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/elastic/esqueue.git"
|
|
},
|
|
"license": "Apache-2.0",
|
|
"engines": {
|
|
"node": ">=4.3.0"
|
|
},
|
|
"devDependencies": {
|
|
"@elastic/eslint-config-kibana": "^0.3.0",
|
|
"babel-cli": "^6.23.0",
|
|
"babel-core": "^6.23.1",
|
|
"babel-eslint": "^7.1.1",
|
|
"babel-plugin-add-module-exports": "^0.2.1",
|
|
"babel-preset-es2015": "^6.22.0",
|
|
"elasticsearch": "^12.0.0",
|
|
"eslint": "^3.16.1",
|
|
"eslint-plugin-mocha": "^4.8.0",
|
|
"eslint-plugin-react": "^6.10.0",
|
|
"expect.js": "~0.3.1",
|
|
"lodash": "^4.17.4",
|
|
"mocha": "^3.2.0",
|
|
"nyc": "^10.1.2",
|
|
"proxyquire": "^1.7.4",
|
|
"retire": "^1.2.12",
|
|
"sinon": "^1.17.3"
|
|
},
|
|
"peerDependencies": {
|
|
"elasticsearch": ">=11.0.1"
|
|
},
|
|
"dependencies": {
|
|
"debug": "^2.6.1",
|
|
"in-publish": "^2.0.0",
|
|
"moment": "^2.17.1",
|
|
"puid": "^1.0.5"
|
|
}
|
|
}
|