generated from shaharmor/node-module-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.95 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "redis-cluster-tools",
"version": "0.0.0",
"description": "Manage Redis Cluster with ease",
"keywords": [
"redis"
],
"homepage": "https://github.com/shaharmor/redis-cluster-tools",
"bugs": {
"url": "https://github.com/shaharmor/redis-cluster-tools/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/shaharmor/redis-cluster-tools.git"
},
"license": "MIT",
"author": {
"name": "Shahar Mor"
},
"scripts": {
"cluster:start": "tools/redis-cluster/start.sh",
"cluster:stop": "tools/redis-cluster/stop.sh",
"lint": "npm run lint:tsc && npm run lint:eslint",
"lint:all": "npm run all -- run lint",
"lint:eslint": "npm run lint:eslint:glob -- '**/*.{js,ts}'",
"lint:eslint:glob": "eslint --fix --max-warnings 0",
"lint:tsc": "tsc -p tsconfig.json --noEmit",
"reformat": "npm run reformat:glob -- '**/*.{js,json,ts}'",
"reformat:glob": "prettier --write",
"test": "jest",
"test:watch": "npm run test -- '--watch'"
},
"dependencies": {
"delay": "4.3.0",
"ioredis": "4.14.1",
"p-map": "3.0.0",
"p-queue": "6.2.1"
},
"devDependencies": {
"@commitlint/cli": "8.2.0",
"@shaharmor/commitlint-config": "0.0.2",
"@shaharmor/eslint-config": "1.2.1",
"@shaharmor/prettier-config": "1.1.1",
"@shaharmor/tsconfig": "0.1.1",
"@types/ioredis": "4.0.19",
"@types/jest": "24.0.23",
"@typescript-eslint/eslint-plugin": "2.8.0",
"crypto-random-string": "3.0.1",
"eslint": "6.7.1",
"eslint-import-resolver-typescript": "2.0.0",
"eslint-plugin-import": "2.18.2",
"eslint-plugin-jest": "23.0.4",
"eslint-plugin-prettier": "3.1.1",
"execa": "3.3.0",
"husky": "3.1.0",
"jest": "24.9.0",
"lint-staged": "9.4.3",
"p-times": "2.1.0",
"prettier": "1.19.1",
"sort-package-json": "1.23.1",
"ts-jest": "24.2.0",
"ts-node": "8.5.2",
"tsconfig-paths": "3.9.0",
"typescript": "3.7.2"
}
}