-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 2 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": "mongoose-connection-promise",
"version": "0.2.3",
"description": "Convenience library to connect Mongoose to a MongoDB instance using promises.",
"keywords": [
"mongoose",
"promises"
],
"license": "MIT",
"author": "Stefan Walther",
"main": "index.js",
"repository": "https://github.com/stefanwalther/mongoose-connection-promise",
"scripts": {
"dc-dev-down": "docker-compose --f=./docker-compose.yml down",
"dc-dev-up": "docker-compose --f=./docker-compose.yml up --build",
"docs": "docker run --rm -v ${PWD}:/opt/verb stefanwalther/verb",
"lint": "npm run lint:src && yarn run lint:test",
"lint:fix": "npm run lint:src:fix && npm run lint:test:fix",
"lint:src": "eslint src",
"lint:src:fix": "eslint src --fix",
"lint:test": "eslint test",
"lint:test:fix": "eslint test --fix",
"test": "npm run test:unit && npm run test:integration",
"test-coverage": "istanbul cover node_modules/.bin/_mocha --require ./test/mocha.conf.js -- -- -u exports -R spec test/**/* && codecov",
"test:integration": "mocha './test/integration/**/*.spec.js' --require './test/mocha.conf.js' --timeout 6000",
"test:unit": "mocha './test/unit/**/*.spec.js' --require './test/mocha.conf.js'",
"precommit": "npm run lint"
},
"dependencies": {
"mongoose": "<6.0",
"winster": "^0.2.9"
},
"files": [
"index.js",
"lib"
],
"devDependencies": {
"chai": "4.2.0",
"codecov": "3.5.0",
"eslint": "5.16.0",
"eslint-config-space-single": "0.3.5",
"eslint-plugin-mocha": "5.1.0",
"gulp-format-md": "2.0.0",
"husky": "0.14.3",
"istanbul": "0.4.5",
"mocha": "6.2.0"
},
"verb": {
"run": true,
"toc": true,
"layout": "empty",
"tasks": [
"readme"
],
"plugins": [
"gulp-format-md"
],
"related": {
"list": []
},
"lint": {
"reflinks": true
},
"reflinks": [
"verb-readme-generator"
]
},
"winster": {
"configFile": "./lib/winster-config.js"
}
}