-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 1.74 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 1.74 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "tedis",
"version": "0.2.0-beta",
"main": "build/main.js",
"scripts": {
"doc:dev": "vuepress dev doc",
"pkg:build": "rm -rf build/* && npx tsc -b tsconfig.app.json",
"pkg:test": "jest --config=jest.config.json",
"upload:doc": "chmod +x ./script/doc.sh && ./script/doc.sh",
"upload:npm": "chmod +x ./script/npm.sh && ./script/npm.sh",
"precommit": "lint-staged"
},
"repository": {
"type": "git",
"url": "git+https://github.com/silkjs/tedis.git"
},
"description": "redis client for node.js with typescript and async",
"keywords": [
"tedis",
"redis",
"typescript",
"async",
"await",
"promise"
],
"authors": [
{
"name": "dasoncheng",
"email": "dasoncheng@foxmail.com"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/silkjs/tedis/issues"
},
"homepage": "https://github.com/silkjs/tedis#readme",
"dependencies": {
"nanoid": "^3.3.1"
},
"devDependencies": {
"@types/jest": "^25.1.4",
"@types/node": "^13.9.1",
"@typescript-eslint/eslint-plugin": "^2.23.0",
"@typescript-eslint/parser": "^2.23.0",
"codecov": "^3.6.5",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-prettier": "^3.1.2",
"husky": "^2.5.0",
"jest": "^25.1.0",
"lint-staged": "^8.2.1",
"prettier": "^1.19.1",
"ts-jest": "^24.0.2",
"tslint": "^5.18.0",
"typescript": "^3.8.3",
"vuepress": "^1.0.2"
},
"directories": {
"doc": "doc",
"example": "example"
},
"lint-staged": {
"linters": {
"*.js": [
"eslint --fix",
"git add"
],
"*.ts": [
"tslint --fix",
"git add"
]
},
"ignore": [
"*.min.js"
]
}
}