forked from typegoose/mongodb-memory-server
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.65 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 2.65 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "mongodb-memory-server",
"version": "0.0.0-development",
"description": "In-memory MongoDB Server. Designed with testing in mind, the server will allow you to connect your favourite ODM or client library to the MongoDB Server and run integration tests isolated from each other.",
"main": "lib/index.js",
"repository": "https://github.com/nodkz/mongodb-memory-server",
"author": "Nodkz (pavel.chertorogov@gmail.com)",
"files": [
"lib",
"postinstall.js"
],
"keywords": [
"mongodb",
"mongoose",
"mock",
"stub",
"mockgoose",
"mongodb-prebuilt",
"mongomem"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/nodkz/mongodb-memory-server/issues"
},
"homepage": "https://github.com/nodkz/mongodb-memory-server",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^8.2.6",
"babel-jest": "^23.4.2",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-flow-strip-types": "^6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.7.0",
"cz-conventional-changelog": "^2.1.0",
"eslint": "^5.2.0",
"eslint-config-airbnb-base": "^13.0.0",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-flowtype": "^2.50.0",
"eslint-plugin-import": "^2.12.0",
"eslint-plugin-prettier": "^2.6.2",
"flow-bin": "^0.77.0",
"jest": "^23.4.2",
"mongodb": "3.1.1",
"npm-run-all": "^4.1.3",
"prettier": "^1.14.0",
"rimraf": "^2.6.2",
"semantic-release": "^15.9.3"
},
"dependencies": {
"babel-runtime": "^6.26.0",
"debug": "^3.1.0",
"decompress": "^4.2.0",
"get-port": "^4.0.0",
"getos": "^3.1.0",
"https-proxy-agent": "^2.2.1",
"lockfile": "^1.0.4",
"md5-file": "^4.0.0",
"mkdirp": "^0.5.1",
"tmp": "^0.0.33",
"uuid": "^3.2.1"
},
"peerDependencies": {},
"scripts": {
"build": "npm-run-all build:*",
"build:cjs": "rimraf lib && babel src --ignore __tests__,__mocks__ -d lib",
"build:flow": "find ./src -name '*.js' -not -path '*/__*' | while read filepath; do cp $filepath `echo $filepath | sed 's/\\/src\\//\\/lib\\//g'`.flow; done",
"watch": "jest --watch",
"coverage": "jest --coverage",
"lint": "eslint --ext .js ./src",
"flow": "./node_modules/.bin/flow",
"test": "npm run coverage && npm run lint && npm run flow",
"semantic-release": "semantic-release",
"postinstall": "node ./postinstall.js"
},
"jest": {
"roots": [
"<rootDir>/src"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}