-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
46 lines (46 loc) · 1.17 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": "coa-redis",
"version": "0.0.0",
"description": "redis component for coa",
"keywords": [
"coajs",
"coa",
"redis"
],
"license": "MIT",
"author": "Aex",
"homepage": "https://github.com/coajs/coa-redis",
"repository": {
"type": "git",
"url": "https://github.com/coajs/coa-redis.git"
},
"scripts": {
"tsc": "tsc -w",
"test": "mocha dist/test",
"test:dev": "mocha dist/test --watch",
"build": "rm -rf dist && tsc && cp package.json *.md dist/src",
"lint": "eslint .",
"format": "prettier -w .",
"sync": "curl -X PUT 'https://npm.taobao.org/sync/coa-redis?sync_upstream=true'"
},
"dependencies": {
"@types/ioredis": "^4.27.6",
"coa-echo": "^1.2.1",
"coa-error": "^1.5.2",
"coa-helper": "^1.2.1",
"ioredis": "^4.27.10"
},
"devDependencies": {
"@types/chai": "^4.2.22",
"@types/mocha": "^9.0.0",
"@types/node": "^16.10.2",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"chai": "^4.3.4",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"mocha": "^9.1.2",
"prettier": "^2.4.1",
"typescript": "^4.4.3"
}
}