-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
55 lines (55 loc) · 1.61 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
48
49
50
51
52
53
54
55
{
"name": "@silver886/amazon-documentdb",
"version": "1.0.3",
"description": "Helpers for Amazon DocumentDB",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"scripts": {
"comments": "leasot --ignore node_modules/** .git/** --tags NOTE OPTIMIZE TODO HACK XXX FIXME BUG --filetype .ts **",
"lint": "eslint .",
"watch-pretest": "tsc -p ./test/tsconfig.json --watch",
"watch-test": "jest --coverage --watchAll",
"test": "tsc -p ./test/tsconfig.json && jest --coverage",
"prepack": "tsc",
"prepublishOnly": "pnpm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/silver886/amazon-documentdb.git"
},
"keywords": [
"aws",
"documentdb"
],
"author": {
"name": "Leo Liu",
"email": "[email protected]"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/silver886/amazon-documentdb/issues"
},
"homepage": "https://github.com/silver886/amazon-documentdb#readme",
"devDependencies": {
"@silver886/eslint-config": "^2.0.0",
"@types/jest": "^27.4.0",
"@types/mongodb": "^3.6.20",
"@types/node": "^14.18.3",
"@typescript-eslint/eslint-plugin": "^5.8.1",
"@typescript-eslint/parser": "^5.8.1",
"eslint": "^8.5.0",
"jest": "^27.4.5",
"leasot": "^12.0.0",
"ts-node": "^10.4.0",
"typescript": "^4.5.4"
},
"dependencies": {
"@silver886/json-schema": "^5.2.1",
"aws-sdk": "^2.1048.0",
"axios": "^0.21.4",
"mongodb": "^3.7.3",
"mongodb-client-encryption": "^1.2.7",
"mongoose": "^5.13.14",
"saslprep": "git+https://github.com/reklatsmasters/saslprep.git"
}
}