shovel/package.json
Andre Keedy 50ec0f2000 Add support to run an ansible playbook
- Add an API to upload a playbook
- Add an API to run an ansible playbook on a rackHD node
- fix new eslint errors
- Add unit tests

Change-Id: Ibe623c228c6ac13cab0f2726e267878bec1bdb6e
Implements: blueprint shovel-deployment-capability
2016-03-08 15:31:50 +00:00

35 lines
923 B
JSON

{
"name": "node-shovel",
"version": "1.0.4",
"description": "RackHD-OpenStack Coordinator",
"main": "main.js",
"keywords": [
"swagger"
],
"license": "Apache-2.0",
"dependencies": {
"bluebird": "3.1.1",
"swagger-tools": "0.8.*",
"should": "~7.0.1",
"mocha": "^2.1.0",
"sinon": "1.16.1",
"supertest": "^0.15.0",
"underscore": "^1.8.3",
"xunit-file": "0.0.6",
"winston": "2.1.1",
"jsonfile": "2.2.3",
"crypto": "0.0.3",
"istanbul": "0.4.1",
"nock": "3.6.0",
"eslint-config-openstack": "~1.2.3",
"eslint": "~1.10.3",
"express": "~4.13.4",
"tar": "~2.2.1"
},
"scripts": {
"start": "start shovel",
"test": "istanbul cover -x '**/test/**' node_modules/mocha/bin/_mocha test/api/* test/services/* test/controllers/* && istanbul report cobertura",
"lint": "./node_modules/eslint/bin/eslint.js controllers/Shovel.js lib/*"
}
}