This repository has been archived by the owner on Apr 19, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
71 lines (71 loc) · 1.87 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "@synor/database-mongodb",
"version": "0.1.0",
"description": "Synor Database Engine - MongoDB",
"keywords": [
"synor",
"synor-database",
"synor-mongodb",
"mongodb",
"mongo"
],
"homepage": "https://github.com/Synor/database-mongodb#readme",
"bugs": "https://github.com/Synor/database-mongodb/issues",
"license": "MIT",
"author": "Tahmid Sadik",
"files": [
"lib"
],
"main": "lib/index.js",
"module": "lib/index.esm.js",
"types": "lib/index.d.ts",
"repository": "https://github.com/Synor/database-mongodb",
"scripts": {
"prebuild": "npm run clean",
"build": "bili",
"clean": "rimraf lib/*",
"prepack": "npm run build",
"test": "jest",
"watch": "bili --format cjs --watch"
},
"dependencies": {
"connection-string": "^3.1.3",
"debug": "^4.1.1",
"mongodb": "^3.5.4"
},
"devDependencies": {
"@synor/core": "^0.9.3",
"@synor/eslint-config": "^0.1.0",
"@types/debug": "^4.1.5",
"@types/jest": "^25.1.4",
"@types/mongodb": "^3.5.2",
"@typescript-eslint/eslint-plugin": "^2.22.0",
"@typescript-eslint/parser": "^2.22.0",
"bili": "^4.8.1",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.0",
"eslint-config-standard-with-typescript": "^14.0.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-jest": "^23.8.2",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"husky": "^4.2.1",
"jest": "^25.1.0",
"lint-staged": "^10.0.8",
"prettier": "^1.19.1",
"pretty-quick": "^2.0.1",
"rimraf": "^3.0.2",
"rollup-plugin-typescript2": "^0.26.0",
"ts-jest": "^25.2.1",
"ts-node": "^8.6.2",
"typescript": "^3.8.3"
},
"peerDependencies": {
"@synor/core": "^0.9.3"
},
"publishConfig": {
"access": "public"
}
}