redis-typescript
Version:
redis client for node.js with typescript and async
74 lines (73 loc) • 1.61 kB
JSON
{
"name": "redis-typescript",
"version": "0.1.2",
"main": "build/main.js",
"typings": "types/index.d.ts",
"scripts": {
"doc:dev": "vuepress dev doc",
"pkg:build": "npx tsc -b src/tsconfig.app.json",
"pkg:test": "jest",
"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/myour-cc/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/myour-cc/tedis/issues"
},
"homepage": "https://github.com/myour-cc/tedis#readme",
"dependencies": {},
"devDependencies": {
"@types/jest": "^23.3.1",
"@types/node": "^10.5.8",
"@types/uuid": "^3.4.3",
"codecov": "^3.0.4",
"eslint": "^5.3.0",
"husky": "^0.14.3",
"jest": "^23.5.0",
"lint-staged": "^7.2.0",
"ts-jest": "^23.1.3",
"tslint": "^5.11.0",
"typescript": "^3.0.1",
"uuid": "^3.3.2",
"vuepress": "^0.13.1"
},
"directories": {
"doc": "doc",
"example": "example"
},
"lint-staged": {
"linters": {
"*.js": [
"eslint --fix",
"git add"
],
"*.ts": [
"tslint --fix",
"git add"
]
},
"ignore": [
"*.min.js"
]
}
}