UNPKG

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