UNPKG

1.47 kBJSONView Raw
1{
2 "name": "openwhisk",
3 "version": "3.8.0",
4 "description": "JavaScript client library for the OpenWhisk platform",
5 "main": "lib/main.js",
6 "engines": {
7 "node": ">=4.0.0"
8 },
9 "directories": {
10 "test": "tests"
11 },
12 "scripts": {
13 "test": "ava test/unit",
14 "test-integration": "ava test/integration/*.test.js",
15 "code-coverage-build": "babel --out-dir=ecma5 lib",
16 "code-coverage-run": "./tools/merge-coverage.sh",
17 "coverage": "nyc report --reporter=text-lcov > coverage.lcov && codecov"
18 },
19 "repository": {
20 "type": "git",
21 "url": "git+https://github.com/openwhisk/openwhisk-client-js.git"
22 },
23 "keywords": [
24 "openwhisk",
25 "bluemix",
26 "nodejs"
27 ],
28 "author": "James Thomas <james@jamesthom.as>",
29 "license": "Apache-2.0",
30 "bugs": {
31 "url": "https://github.com/openwhisk/openwhisk-client-js/issues"
32 },
33 "homepage": "https://github.com/openwhisk/openwhisk-client-js#readme",
34 "devDependencies": {
35 "ava": "^0.15.2",
36 "babel": "^6.23.0",
37 "babel-cli": "^6.24.1",
38 "codecov": "^2.3.0",
39 "jszip": "^3.1.3",
40 "nyc": "^11.0.3",
41 "proxyquire": "1.7.4"
42 },
43 "dependencies": {
44 "request-promise": "^2.0.1"
45 },
46 "babel": {
47 "presets": [
48 "es2015"
49 ],
50 "plugins": [
51 "transform-runtime"
52 ],
53 "ignore": "test",
54 "env": {
55 "development": {
56 "sourceMaps": "inline"
57 }
58 }
59 },
60 "ava": {
61 "require": [
62 "babel-core/register"
63 ]
64 }
65}