forked from mikhail-angelov/mongo-unit
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
51 lines (51 loc) · 1.29 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
{
"name": "@univision/mongo-unit-rs",
"version": "1.0.1",
"description": "mongo db for unit tests",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"test": "mocha test.js",
"test-example": "mocha ./examples/test.it.js --delay",
"test-format": "prettier --check '**/*.{js,json}'",
"release": "git commit -am $npm_package_version && git tag $npm_package_version && git push && git push --tags && npm publish",
"format": "prettier --write '**/*.{js,json}'"
},
"repository": {
"type": "git",
"url": "https://github.com/televisa-univision/mongo-unit-rs"
},
"keywords": [
"js",
"unit",
"test",
"db",
"database",
"unit",
"mongo",
"mongodb",
"mongoose",
"mongo-unit-replica-set",
"mongodb-memory-server"
],
"author": "Atif Saddique",
"license": "MIT",
"bugs": {
"url": "https://github.com/televisa-univision/mongo-unit-rs/issues"
},
"homepage": "https://github.com/televisa-univision/mongo-unit-rs#readme",
"dependencies": {
"debug": "^3.0.1",
"mongodb": "^3.3.3",
"mongodb-memory-server": "^6.3.1",
"portfinder": "^1.0.10",
"ps-node": "^0.1.4"
},
"devDependencies": {
"chai": "^3.5.0",
"co": "^4.6.0",
"mocha": "^7.1.0",
"mongoose": "^5.7.7",
"prettier": "^1.19.1"
}
}