forked from danitseitlin/redis-cloud-api-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.92 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.92 KB
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
{
"name": "@redislabsdev/redis-cloud-api-sdk",
"version": "1.0.9",
"description": "This is a client for the Redislabs Cloud API",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "tsc",
"generate-docs": "typedoc --out docs .",
"test": "mocha -r ts-node/register",
"unit-tests": "npm run general-unit-tests && npm run cloud-account-unit-tests && npm run subscription-unit-tests && npm run database-unit-tests",
"general-unit-tests": "npm run test tests/unit/general.ts -- --ENVIRONMENT=localhost --PORT=3000 --API_ACCESS_KEY=access-key --API_SECRET_KEY=secret-key",
"cloud-account-unit-tests": "npm run test tests/unit/cloud-account.ts -- --ENVIRONMENT=localhost --PORT=3000 --API_ACCESS_KEY=access-key --API_SECRET_KEY=secret-key",
"subscription-unit-tests": "npm run test tests/unit/subscription.ts -- --ENVIRONMENT=localhost --PORT=3000 --API_ACCESS_KEY=access-key --API_SECRET_KEY=secret-key",
"database-unit-tests": "npm run test tests/unit/database.ts -- --ENVIRONMENT=localhost --PORT=3000 --API_ACCESS_KEY=access-key --API_SECRET_KEY=secret-key"
},
"keywords": [
"Redis",
"Redis Cloud API",
"Redis Cloud API SDK",
"Cloud API SDK",
"Cloud API",
"Cloud"
],
"repository": {
"type": "git",
"url": "https://github.com/redislabsdev/redis-cloud-api-sdk"
},
"author": "Redis",
"license": "Apache 2.0",
"bugs": {
"url": "https://github.com/redislabsdev/redis-cloud-api-sdk/issues"
},
"homepage": "https://github.com/redislabsdev/redis-cloud-api-sdk#readme",
"dependencies": {
"axios": "0.27.2"
},
"devDependencies": {
"@microsoft/tsdoc": "0.13.2",
"@types/chai": "4.2.22",
"@types/mocha": "9.0.0",
"@types/node": "16.11.9",
"chai": "4.3.4",
"cli-argument-parser": "0.6.1",
"dmock-server": "1.9.7",
"mocha": "9.2.2",
"ts-node": "10.4.0",
"typedoc": "0.22.11",
"typescript": "4.4.4"
}
}