60 lines
1.7 KiB
JSON
60 lines
1.7 KiB
JSON
{
|
|
"name": "elastiq",
|
|
"version": "3.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",
|
|
"lint": "eslint \"*.js\" \"src/**/*.js\"",
|
|
"test:ci": "npm run lint && npm run test",
|
|
"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/elastiq.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": "6.1.2",
|
|
"babel-plugin-add-module-exports": "^0.2.1",
|
|
"babel-preset-es2015": "^6.22.0",
|
|
"elasticsearch": "^13.0.1",
|
|
"eslint": "3.11.1",
|
|
"eslint-plugin-babel": "4.0.0",
|
|
"eslint-plugin-mocha": "4.7.0",
|
|
"eslint-plugin-react": "^7.0.1",
|
|
"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": "^2.3.1"
|
|
},
|
|
"peerDependencies": {
|
|
"elasticsearch": ">=11.0.1"
|
|
},
|
|
"dependencies": {
|
|
"debug": "^2.6.1",
|
|
"in-publish": "^2.0.0",
|
|
"moment": "^2.17.1",
|
|
"puid": "^1.0.5"
|
|
}
|
|
}
|