blob: af298ef3f9e497d33527137d04b1384f2c9b63cf [file] [log] [blame]
{
"name": "openwhisk",
"version": "3.13.0",
"description": "JavaScript client library for the OpenWhisk platform",
"main": "lib/main.js",
"typings": "lib/main.d.ts",
"engines": {
"node": ">=4.0.0"
},
"directories": {
"test": "tests"
},
"scripts": {
"test": "ava test/unit",
"test-integration": "ava test/integration/*.test.js",
"code-coverage-build": "babel --out-dir=ecma5 lib",
"code-coverage-run": "./tools/merge-coverage.sh",
"coverage": "nyc report --reporter=text-lcov > coverage.lcov && codecov"
},
"repository": {
"type": "git",
"url": "git+https://github.com/openwhisk/openwhisk-client-js.git"
},
"keywords": [
"openwhisk",
"bluemix",
"nodejs"
],
"author": "James Thomas <james@jamesthom.as>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/openwhisk/openwhisk-client-js/issues"
},
"homepage": "https://github.com/openwhisk/openwhisk-client-js#readme",
"devDependencies": {
"ava": "^0.15.2",
"babel": "^6.23.0",
"babel-cli": "^6.24.1",
"codecov": "^2.3.0",
"jszip": "^3.1.3",
"nyc": "^11.0.3",
"proxyquire": "1.7.4"
},
"dependencies": {
"needle": "^2.1.0",
"@types/node": "^8.0.26",
"@types/swagger-schema-official": "^2.0.6"
},
"babel": {
"presets": [
"es2015"
],
"plugins": [
"transform-runtime"
],
"ignore": "test",
"env": {
"development": {
"sourceMaps": "inline"
}
}
},
"ava": {
"require": [
"babel-core/register"
]
}
}