-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
58 lines (58 loc) · 1.61 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
{
"name": "@ndustrial/node-distributed-lock",
"version": "1.0.3",
"description": "Enables distributed locking for sequelize applications",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"lint": "eslint ./ --cache --fix --ignore-pattern .gitignore",
"start:services": "docker compose up -d --wait",
"stop:services": "docker compose down",
"prebuild": "rimraf dist/",
"build": "tsc",
"postbuild": "copyfiles -u 1 \"lib/**/*.js\" -e \"lib/**/**.test.js\" \"dist\"",
"test": "jest --coverage --runInBand --forceExit",
"testagain": "node lib/test.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ndustrialio/node-distributed-lock.git"
},
"keywords": [
"sequelize",
"lock",
"distributed",
"migration"
],
"author": "mgagliardo91",
"license": "MIT",
"bugs": {
"url": "https://github.com/ndustrialio/node-distributed-lock/issues"
},
"homepage": "https://github.com/ndustrialio/node-distributed-lock#readme",
"dependencies": {
"@types/node": "^22.0.0",
"async-exit-hook": "^2.0.1",
"debug": "^4.3.2",
"uuid": "^11.0.1"
},
"devDependencies": {
"copyfiles": "^2.4.1",
"eslint": "^8.57.1",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-jest": "^28.2.0",
"eslint-plugin-simple-import-sort": "^12.0.0",
"jest": "^29.0.1",
"jest-when": "^3.4.1",
"knex": "^3.0.1",
"pg": "^8.11.0",
"rimraf": "^6.0.1",
"sequelize": "^6.7.0",
"typescript": "^5.0.2"
},
"directories": {
"lib": "lib",
"test": "test"
}
}