-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.07 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.07 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
{
"name": "mongomem",
"version": "0.1.9",
"description": "In-memory MongoDB Server with Mongoose auto-connection",
"main": "build/index.js",
"author": "Connor Imrie",
"license": "MIT",
"scripts": {
"test": "NODE_ENV=testing ava --verbose --timeout=6000"
},
"repository" :{
"type" : "git",
"url" : "https://github.com/CImrie/mongomem.git"
},
"dependencies": {
"mongodb-prebuilt": "^6.2.0",
"get-port": "^3.1.0",
"tmp": "0.0.31",
"uuid": "^3.0.1"
},
"devDependencies": {
"ava": "^0.19.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-polyfill": "^6.23.0",
"babel-preset-es2015": "^6.24.0",
"babel-preset-es2017": "^6.22.0",
"babel-preset-stage-0": "^6.22.0",
"babel-runtime": "^6.23.0"
},
"ava": {
"files": [
"test/**/*.test.js"
],
"source": [
"**/*.{js,jsx}",
"!dist/**/*"
],
"match": [
"*"
],
"concurrency": 5,
"failFast": true,
"tap": false,
"powerAssert": false,
"require": [
"babel-register"
],
"babel": "inherit"
}
}