-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 892 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 892 Bytes
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
{
"name": "openwhisk-sql-query",
"version": "1.0.0",
"description": "OpenWhisk functions for IBM SQL Query",
"main": "dist/SqlQuery.js",
"types": "dist/SqlQuery.d.ts",
"scripts": {
"build": "tsc",
"test": "mocha -r ts-node/register test/functionsTest.ts",
"bundle": "webpack --config webpack.config.js",
"deploy": "npm run build && wskdeploy -m manifest.yaml"
},
"author": "van_staub@us.ibm.com",
"license": "Apache-2.0",
"devDependencies": {
"@types/chai": "^4.1.4",
"@types/dotenv": "^4.0.3",
"@types/mocha": "^5.2.5",
"@types/node": "^10.5.5",
"@types/xml2js": "^0.4.3",
"chai": "^4.1.2",
"dotenv": "^6.0.0",
"mocha": "^5.2.0",
"ts-loader": "^4.4.2",
"ts-node": "^7.0.0",
"typescript": "^3.0.1"
},
"dependencies": {
"request": "^2.88.0",
"request-promise": "^4.2.2",
"xml2js": "^0.4.19"
}
}