forked from apache/openwhisk-client-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.54 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "openwhisk",
"version": "3.6.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 <[email protected]>",
"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": {
"request-promise": "^2.0.1",
"@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"
]
}
}