-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 922 Bytes
/
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
{
"name": "db-repository-mongo",
"version": "1.1.3",
"description": "mongoDb implementation for db-repository",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"build": "npm run clean && npm run build-ts",
"build-ts": "tsc --build tsconfig.json",
"clean": "rimraf dist/*",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vpavel04/db-repository-mongo.git"
},
"author": "Vlad Pavel",
"license": "MIT",
"bugs": {
"url": "https://github.com/vpavel04/db-repository-mongo/issues"
},
"homepage": "https://github.com/vpavel04/db-repository-mongo#readme",
"devDependencies": {
"@types/mongodb": "^3.1.18",
"rimraf": "^2.6.3",
"typescript": "^3.2.2"
},
"dependencies": {
"mongodb": "^3.1.10",
"db-repository": "^1.1.1"
}
}