-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·52 lines (52 loc) · 1.31 KB
/
package.json
File metadata and controls
executable file
·52 lines (52 loc) · 1.31 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
{
"name": "monredis",
"version": "2.1.0",
"private": false,
"engines": {
"node": ">=8.3.0"
},
"description": "Redis library for Monk projects",
"main": "build/redis.js",
"types": "build/redis.d.ts",
"scripts": {
"build": "tsc",
"test": "env TS_NODE_FILES=true mocha --require ts-node/register --extension ts --colors --exit",
"lint": "eslint --ext .ts lib test",
"prepare": "npm run build"
},
"files": [
"build/"
],
"keywords": [
"monk",
"redis"
],
"author": "Monk Software",
"license": "ISC",
"dependencies": {
"debug": "^4.1.1",
"ioredis": "^3.2.2"
},
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/chai-as-promised": "^7.1.0",
"@types/debug": "^4.1.4",
"@types/ioredis": "^4.0.10",
"@types/mocha": "^5.2.6",
"@types/node": "^11.13.4",
"@typescript-eslint/eslint-plugin": "^1.6.0",
"@typescript-eslint/parser": "^1.6.0",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"eslint": "^5.13.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-security": "^1.4.0",
"eslint-plugin-standard": "^4.0.0",
"mocha": "^6.0.2",
"ts-node": "^8.1.0",
"typescript": "^3.4.3"
}
}