forked from BrandonZacharie/node-mongod
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.12 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
{
"name": "mongod",
"description": "Start and stop a MongoDB server.",
"keywords": [
"mongodb",
"server",
"manager"
],
"version": "2.0.0",
"license": "MIT",
"homepage": "https://github.com/BrandonZacharie/node-mongod#readme",
"bugs": {
"url": "https://github.com/BrandonZacharie/node-mongod/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/BrandonZacharie/node-mongod.git"
},
"author": {
"name": "Brandon Zacharie",
"email": "[email protected]"
},
"main": "Mongod.js",
"scripts": {
"test": "istanbul cover -x test.js _mocha",
"lint": "npm run eslint && npm run remark",
"eslint": "eslint --ignore-path .gitignore **/*.js",
"remark": "remark ."
},
"dependencies": {
"promise-queue": "^2.2.3",
"ps-node": "^0.1.6"
},
"devDependencies": {
"chai": "^4.1.0",
"coveralls": "^2.11.15",
"eslint": "^3.13.0",
"fs-extra": "^4.0.1",
"istanbul": "^0.4.5",
"js-yaml": "^3.7.0",
"mocha": "^3.1.2",
"remark-cli": "^2.1.0",
"remark-preset-lint-recommended": "^1.0.0",
"uuid": "^3.0.1"
}
}