-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.35 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.35 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
{
"name": "@auxilin/node-mongo",
"version": "1.3.4",
"author": "Auxilin",
"description": "MongoDB wrapper for Node.JS",
"private": false,
"main": "src/index.js",
"scripts": {
"test": "run-s test:*",
"test:eslint": "eslint ./",
"test:mocha": "NODE_ENV=test mocha --timeout 3000 --exit --recursive -c -R spec src/*.spec.js",
"coveralls": "nyc npm run test:mocha && nyc report --reporter=text-lcov | coveralls",
"add-contributor": "all-contributors add",
"generate-contributors": "all-contributors generate"
},
"keywords": [
"mongo",
"mongodb driver api",
"auxilin"
],
"license": "MIT",
"dependencies": {
"lodash": "4.17.15",
"mongodb": "3.3.2"
},
"devDependencies": {
"@auxilin/eslint-config": "0.2.0",
"all-contributors-cli": "6.9.0",
"babel-eslint": "10.0.3",
"chai": "4.2.0",
"coveralls": "3.0.6",
"eslint": "6.3.0",
"eslint-plugin-import": "2.18.2",
"eslint-plugin-jsx-a11y": "6.2.3",
"eslint-plugin-react": "7.14.3",
"eslint-plugin-react-hooks": "1.7.0",
"@hapi/joi": "15.1.1",
"jsonschema": "1.2.4",
"mocha": "6.2.0",
"mocha-lcov-reporter": "1.3.0",
"npm-run-all": "4.1.5",
"nyc": "14.1.1"
},
"engines": {
"node": ">=8.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/auxilincom/node-mongo.git"
}
}