-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.61 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
{
"name": "mongodb-sandbox",
"version": "1.0.1",
"description": "Launch a stand-alone MongoDB Topology for use within a Test Suite.",
"publishConfig": {
"access": "public"
},
"keywords": [
"mongodb",
"mongoose",
"sandbox",
"testing",
"test",
"mock",
"stub",
"topology"
],
"main": "index.js",
"files": [
"index.js",
"lib/"
],
"engines": {
"node": ">=6.0"
},
"scripts": {
"ci": "npm run test && npm run lint",
"jsdoc": "jsdoc2md --configure .jsdoc2md.json > JSDOC.md",
"lint": "eslint lib/ test/",
"lock": "npm install --package-lock-only",
"preversion": "npm run lock && npm run jsdoc && npm run ci",
"test": "mocha 'test/bootstrap.js' 'test/**/*.test.js' --recursive --ui bdd --reporter spec --timeout 5000",
"test-unit": "TEST_SCOPE=unit npm run test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cantremember/mongodb-sandbox.git"
},
"author": "Daniel M Foley <admin@cantremember.com> (http://cantremember.com/)",
"license": "WTFPL",
"bugs": {
"url": "https://github.com/cantremember/mongodb-sandbox/issues"
},
"homepage": "https://github.com/cantremember/mongodb-sandbox#readme",
"dependencies": {
"@cantremember/mongodb-down-load": "^2.3.1",
"debug": "^4.1.0",
"mongodb": "^3.1.6",
"mongodb-prebuilt": "^6.3.6",
"mongodb-topology-manager": "^2.1.0",
"portfinder": "^1.0.17",
"request": "^2.88.0"
},
"devDependencies": {
"chai": "^4.2.0",
"eslint": "^5.7.0",
"jsdoc-to-markdown": "^6.0.1",
"mocha": "^5.2.0",
"sinon": "^6.3.5"
}
}