-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.59 KB
/
Copy pathpackage.json
File metadata and controls
57 lines (57 loc) · 1.59 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
52
53
54
55
56
57
{
"name": "node-cosmos",
"version": "0.1.7",
"description": "A light weight azure cosmosdb client aiming at ease of use for creating REST API. Supports json filter, sort and offset/limit",
"homepage": "https://github.com/thunderz99/node-cosmos",
"repository": {
"type": "git",
"url": "https://github.com/thunderz99/node-cosmos"
},
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"pretest": "tsc",
"test": "jest --coverage"
},
"keywords": [
"cosmosdb",
"mongodb",
"cosmos",
"azure",
"documentdb",
"client",
"sdk",
"typescript",
"node",
"light"
],
"dependencies": {
"@azure/cosmos": "^3.17.1",
"mongodb": "^6.10.0",
"pg": "^8.16.3",
"randomstring": "^1.2.1",
"uuid": "^11.0.2"
},
"devDependencies": {
"@types/jest": "^26.0.4",
"@types/node": "^14.0.20",
"@types/pg": "^8.15.6",
"@types/randomstring": "^1.1.7",
"@typescript-eslint/eslint-plugin": "^3.6.0",
"@typescript-eslint/parser": "^3.6.0",
"dotenv": "^8.2.0",
"eslint": "^7.4.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"jest": "^29.0.0",
"npm-run-all": "^4.1.5",
"pg-mem": "^3.0.5",
"prettier": "^2.0.5",
"rimraf": "^3.0.2",
"supertest": "^4.0.2",
"ts-jest": "^29.0.0",
"typescript": "^4.0.0"
},
"author": "Zhang Lei <thunderz99@gmail.com>",
"license": "MIT"
}