-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.49 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
57
58
59
{
"name": "@kontsedal/locco",
"version": "0.0.2",
"keywords": [
"lock",
"distributed locks",
"redlock",
"mongo",
"redis"
],
"license": "MIT",
"author": "Bohdan Kontsedal <[email protected]>",
"description": "Distributed locks library",
"type": "module",
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"types": "./dist/types/index.d.ts",
"exports": {
".": {
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js"
}
},
"files": [
"/dist"
],
"repository": {
"type": "git",
"url": "https://github.com/Kontsedal/locco.git"
},
"scripts": {
"build": "del-cli ./build && tsc && tsc -p tsconfig.cjs.json && ./fixup.sh",
"compose": "docker-compose up",
"test": "jest",
"lint": "eslint src --ext .ts",
"lint:fix": "npm run lint -- --fix",
"publish:package": "npm run build && np"
},
"devDependencies": {
"@babel/preset-env": "7.17.12",
"@babel/preset-typescript": "7.17.12",
"@jest/globals": "28.1.0",
"@typescript-eslint/eslint-plugin": "5.25.0",
"@typescript-eslint/parser": "5.25.0",
"del-cli": "^5.1.0",
"eslint": "8.15.0",
"eslint-config-google": "0.14.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-prettier": "4.0.0",
"ioredis": "5.0.5",
"jest": "28.1.0",
"mongodb": "4.6.0",
"np": "^9.2.0",
"prettier": "2.6.2",
"ts-node": "10.7.0",
"typescript": "4.6.4"
}
}