-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
49 lines (49 loc) · 1.28 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
{
"name": "redis-server",
"description": "Start and stop a Redis server.",
"keywords": [
"Redis",
"server",
"manager"
],
"version": "1.2.2",
"license": "MIT",
"homepage": "https://github.com/BrandonZacharie/node-redis-server#readme",
"bugs": {
"url": "https://github.com/BrandonZacharie/node-redis-server/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/BrandonZacharie/node-redis-server.git"
},
"author": {
"name": "Brandon Zacharie",
"email": "[email protected]"
},
"main": "RedisServer.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",
"mocha": "^5.2.0",
"nyc": "^12.0.2",
"remark-cli": "^5.0.0",
"remark-lint": "^6.0.2",
"remark-preset-lint-recommended": "^3.0.2"
}
}