-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
47 lines (47 loc) · 1.03 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
{
"name": "test-with-mongo",
"version": "0.0.9",
"license": "MIT",
"description": "Easy way to spin up and have a clean mongo db for testing",
"keywords": [
"mongo",
"test",
"unittest",
"unit test",
"unit-test",
"test",
"mock",
"db",
"integration",
"component"
],
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "[email protected]:microsoftly/test-with-mongo.git"
},
"scripts": {
"build": "tsc",
"clean": "rm -rf dist",
"rebuild": "npm run clean && npm run build",
"prepublish": "npm run rebuild",
"test": "mocha ./test.spec.js"
},
"dependencies": {
"mongodb": "^2.2.29",
"mongodb-prebuilt": "^6.3.3",
"rimraf": "^2.6.1"
},
"devDependencies": {
"@types/chai": "^4.0.1",
"@types/mocha": "^2.2.41",
"@types/mongodb": "^2.2.6",
"@types/node": "^8.0.4",
"@types/rimraf": "^0.0.28",
"chai": "^4.0.2",
"mocha": "^3.4.2",
"ts-node": "^3.1.0",
"typescript": "^2.4.1"
}
}