forked from fastpanel/redis
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.66 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
{
"name": "@fastpanel/redis",
"version": "0.2.1-alpha.1",
"description": "Extension to work with the \"Redis\" service.",
"author": "Desionlab <[email protected]>",
"main": "build/index.js",
"types": "build/index.d.ts",
"directories": {
"doc": "docs",
"test": "test"
},
"scripts": {
"compile": "./node_modules/.bin/tsc",
"develop": "./node_modules/.bin/tsc --watch",
"docs": "./node_modules/.bin/typedoc --theme minimal --target 'esnext' --excludeNotExported --excludePrivate --ignoreCompilerErrors --out ./docs/ ./src/",
"test": "./node_modules/.bin/mocha --require ts-node/register test/**/*.spec.ts",
"build": "npm run test && npm run compile && npm run docs",
"prepare": "npm run test && npm run compile && npm run docs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fastpanel/redis.git"
},
"bugs": {
"url": "https://github.com/fastpanel/redis/issues"
},
"homepage": "https://github.com/fastpanel/redis#readme",
"keywords": [
"nodejs",
"typescript",
"redis"
],
"dependencies": {
"ioredis": "^4.14.0"
},
"devDependencies": {
"@fastpanel/core": "^0.2.1-alpha.1",
"@types/chai": "^4.1.7",
"@types/inquirer": "^6.5.0",
"@types/ioredis": "^4.0.13",
"@types/lodash": "^4.14.136",
"@types/mocha": "^5.2.7",
"@types/node": "^12.6.8",
"@types/prettyjson": "^0.0.29",
"@types/progress": "^2.0.3",
"@types/shelljs": "^0.8.5",
"@types/triple-beam": "^1.3.0",
"@types/validator": "^10.11.2",
"chai": "^4.2.0",
"mocha": "^6.2.0",
"ts-node": "^8.3.0",
"typedoc": "^0.15.0",
"typescript": "^3.5.3"
},
"license": "MIT"
}