-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.06 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
{
"name": "cbops",
"version": "1.0.3",
"description": "Cosmos DB Bulk Operations CLI, that can load objects from JSON files and create or upsert them, or delete items from Container, based on provided query.",
"main": "index.js",
"scripts": {
"test": "jest --coverage",
"start": "node index.js",
"lint": "eslint ."
},
"bin": {
"cbops": "./index.js"
},
"author": "Nik Todorov",
"keywords": [
"cosmos",
"CosmosDB",
"bulk",
"operations",
"Delete",
"Upsert",
"Create",
"Insert",
"delete all",
"empty container",
"insert big data",
"Consmos CLI"
],
"repository": {
"type": "git",
"url": "https://github.com/ntodorov/cosmos-bulk-ops"
},
"homepage": "https://github.com/ntodorov/cosmos-bulk-ops#readme",
"bugs": {
"url": "https://github.com/ntodorov/cosmos-bulk-ops/issues"
},
"license": "ISC",
"dependencies": {
"@azure/cosmos": "^3.17.3",
"commander": "^11.0.0",
"dotenv": "^16.3.1"
},
"devDependencies": {
"eslint": "^8.56.0",
"jest": "^29.7.0"
}
}