-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
51 lines (51 loc) · 1.3 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": "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",
"engines": {
"node": ">=4.0.0"
},
"scripts": {
"test": "npm run nyc",
"nyc": "nyc npm run mocha",
"mocha": "mocha --exit --reporter list",
"lint": "npm run eslint && npm run remark",
"eslint": "eslint --ignore-path .gitignore **/*.js",
"remark": "remark --ignore-path .gitignore --use lint --quiet --frail '.'",
"coveralls": "nyc report --reporter=text-lcov | coveralls"
},
"dependencies": {
"promise-queue": "^2.2.5"
},
"devDependencies": {
"chai": "^4.1.2",
"coveralls": "^3.0.1",
"eslint": "^4.19.1",
"fs-promise": "^2.0.3",
"js-yaml": "^3.12.0",
"mocha": "^5.2.0",
"nyc": "^12.0.2",
"remark-cli": "^5.0.0",
"remark-preset-lint-recommended": "^3.0.2",
"uuid": "^3.2.1"
}
}