-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.5 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
{
"name": "@litert/mutex-redis",
"version": "0.2.0",
"description": "The redis driver for mutex.js.",
"main": "./lib/index.js",
"scripts": {
"prepublishOnly": "npm run rebuild",
"build": "tsc -v && tsc -p .",
"rebuild": "npm run clean && npm run lint && npm run build",
"build-watch": "tsc -v && tsc -w -p .",
"typecheck": "tsc -p tsconfig.json --noEmit",
"test": "mocha",
"clean": "rm -rf lib examples benchmarks test",
"lint": "eslint --ext ts ./src"
},
"keywords": [
"litert",
"lrt",
"mutex",
"redis"
],
"author": "Angus.Fenying <fenying@litert.org> (https://fenying.net)",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/litert/mutex-redis.js.git"
},
"bugs": {
"url": "https://github.com/litert/mutex-redis.js/issues"
},
"homepage": "https://github.com/litert/mutex-redis.js#readme",
"types": "./lib/index.d.ts",
"typings": "./lib/index.d.ts",
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@types/node": "^14.14.14",
"@typescript-eslint/eslint-plugin": "^4.10.0",
"@typescript-eslint/parser": "^4.10.0",
"eslint": "^7.15.0",
"husky": "^4.3.6",
"typescript": "^4.1.3"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "npm run lint && npm run typecheck"
}
},
"dependencies": {
"@litert/mutex": "^0.2.1",
"@litert/redis": "^1.2.2"
}
}