forked from nimbella/nimbella-sdk-nodejs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 946 Bytes
/
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
{
"name": "@nimbella/sdk",
"version": "1.3.0",
"description": "A Node.js library to interact with nimbella.com services.",
"main": "index.js",
"license": "Apache-2.0",
"keywords": [
"nimbella",
"serverless",
"openwhisk",
"functions",
"actions",
"lambda"
],
"files": [
"index.js"
],
"repository": {
"type": "git",
"url": "https://github.com/nimbella/nimbella-sdk-nodejs.git"
},
"bugs": {
"url": "https://github.com/nimbella/nimbella-sdk-nodejs/issues"
},
"homepage": "https://github.com/nimbella/nimbella-sdk-nodejs",
"dependencies": {
"@nimbella/storage": "^0.0.2",
"bluebird": "^3.7.2",
"mysql2": "^2.1.0",
"redis": "^3.0.2"
},
"scripts": {
"start": "docker run -d -p 6379:6379 --rm --name redisqlite sciabarracom/redisqlite:1.0.2 --requirepass password",
"test": "npm run start ; jest ; npm run stop",
"stop": "docker kill redisqlite"
}
}