-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.59 KB
/
package.json
File metadata and controls
59 lines (59 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
58
59
{
"name": "@awsmag/power-document-db",
"version": "1.8.0",
"description": "A package to connect and work with document db (mongodb compatible)",
"main": "dist/index.js",
"scripts": {
"lint": "eslint .",
"prettier": "prettier --write .",
"prebuild": "rimraf dist",
"build": "node build.js",
"build:types": "tsc",
"prepublishOnly": "npm run build",
"test": "TZ=utc DOTENV_CONFIG_PATH=.env.spec mocha -r esbuild-register -r dotenv/config 'test/**/*.spec.ts' --exit --timeout 10000 --file 'test/setup.spec.ts'"
},
"types": "types",
"files": [
"dist",
"types"
],
"keywords": [],
"author": "Simranjeet Singh",
"license": "MIT",
"dependencies": {
"mongodb": "^7.0.0",
"node-cache": "^5.1.2",
"pino": "^10.3.0",
"redis": "^5.10.0"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.3",
"@eslint/js": "^9.39.2",
"@types/chai": "^5.2.3",
"@types/koa": "^3.0.1",
"@types/mocha": "^10.0.10",
"@types/node": "^25.0.10",
"@types/sinon": "^21.0.0",
"@typescript-eslint/eslint-plugin": "^8.54.0",
"chai": "^6.2.2",
"dotenv": "^17.2.3",
"esbuild": "^0.27.2",
"esbuild-register": "^3.6.0",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"koa": "^3.1.1",
"mocha": "^11.3.0",
"mongodb-memory-server": "^10.3.0",
"nyc": "^17.1.0",
"prettier": "^3.8.1",
"rimraf": "^6.1.2",
"sinon": "^21.0.1",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.9.3",
"typescript-json-decoder": "^1.0.11"
},
"directories": {
"test": "test"
}
}