-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
54 lines (54 loc) · 1.26 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
{
"name": "mongo-gridfs",
"description": "Uses the native GridFSBucket-Api from the new MongoDB NodeJS Driver and wrap it as Promise-Objects",
"author": "Quentin Desramé <[email protected]>",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"license": "GPL-3.0",
"repository": {
"type": "git",
"url": "git://github.com/quen2404/mongo-gridfs.git"
},
"bugs": {
"url": "https://github.com/quen2404/mongo-gridfs/issues/new"
},
"keywords": [
"mongodb",
"gridfs",
"native-promise",
"gridFSBucket",
"gridfs-bucket",
"nodejs",
"es6",
"typescript",
"mongoose",
"mongo",
"async"
],
"version": "1.1.0",
"devDependencies": {
"@types/chai": "^4.1.5",
"@types/mocha": "^5.2.6",
"@types/mongodb": "^3.1.7",
"@types/node": "^12.0.2",
"@types/os-tmpdir": "^1.0.0",
"chai": "^4.1.2",
"jsdoc": "^3.5.5",
"mocha": "^6.1.4",
"rimraf": "^2.6.2",
"ts-node": "^8.2.0",
"tsd-jsdoc": "^2.0.0-beta.6",
"tslint": "^5.11.0",
"typescript": "^3.5.1"
},
"dependencies": {
"es6-promise": "^4.2.5",
"mongodb": "^3.1.6",
"os-tmpdir": "^2.0.0",
"unique-filename": "^1.1.1"
},
"scripts": {
"build": "rimraf dist && tsc",
"prepare": "npm run build"
}
}