-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 921 Bytes
/
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
{
"name": "redis-memolock",
"description": "A simple, fast, and reliable memolock for Node.js and TypeScript.",
"version": "1.0.5",
"main": "dist/index.js",
"author": "Lucas Simon",
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/demipixel/redis-memolock-node.git"
},
"scripts": {
"build": "rimraf ./dist && tsc",
"lint": "eslint .",
"test": "jest --config ./jest-config.json --runInBand --coverage",
"prepublishOnly": "npm run lint && npm run build && npm test"
},
"dependencies": {
"ioredis": "^4.28.0"
},
"devDependencies": {
"@types/ioredis": "^4.28.1",
"@types/jest": "^27.0.2",
"@typescript-eslint/eslint-plugin": "^5.3.1",
"@typescript-eslint/parser": "^5.3.1",
"eslint": "^8.2.0",
"jest": "^27.3.1",
"rimraf": "^3.0.2",
"ts-jest": "^27.0.7",
"ts-node": "^10.4.0",
"typescript": "^4.4.4"
}
}