-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
42 lines (42 loc) · 1.14 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
{
"name": "mongo-adapter",
"version": "1.0.8",
"description": "Cloudboost MongoDB adapter",
"main": "dist/index.js",
"scripts": {
"lint": "eslint .",
"test": "echo \"No test specified\"",
"build": "babel src --out-dir dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CloudBoost/mongo-adapter.git"
},
"author": "HackerBay Inc",
"license": "ISC",
"bugs": {
"url": "https://github.com/CloudBoost/mongo-adapter/issues"
},
"homepage": "https://github.com/CloudBoost/mongo-adapter#readme",
"dependencies": {
"@babel/runtime": "^7.5.5",
"connection-string-parser": "^1.0.2",
"data-adaptor-base": "^1.0.1",
"gridfs-stream": "^1.1.1",
"mongodb": "^3.2.3",
"q": "^1.5.1",
"underscore": "^1.9.1",
"winston": "^3.2.1"
},
"devDependencies": {
"@babel/cli": "^7.5.0",
"@babel/core": "^7.5.0",
"@babel/node": "^7.2.2",
"@babel/plugin-proposal-class-properties": "^7.4.0",
"@babel/plugin-transform-runtime": "^7.5.5",
"@babel/preset-env": "^7.4.3",
"babel-eslint": "^10.0.3",
"eslint": "^6.2.2",
"eslint-plugin-jest": "^22.15.2"
}
}