forked from moxystudio/node-proper-lockfile
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.66 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.66 KB
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
60
61
62
63
64
65
66
67
{
"name": "@pkcprotocol/proper-lock-file",
"version": "4.2.1",
"description": "A inter-process and inter-machine lockfile utility that works on a local or network file system",
"keywords": [
"lock",
"locking",
"file",
"lockfile",
"fs",
"cross-process"
],
"author": "pkcprotocol",
"homepage": "https://github.com/pkcprotocol/node-proper-lockfile",
"repository": "github:pkcprotocol/node-proper-lockfile",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"files": [
"dist"
],
"engines": {
"node": ">=20"
},
"scripts": {
"prepare": "husky",
"build": "tsc",
"lint": "eslint .",
"test": "jest --env node --coverage --runInBand",
"release": "HUSKY=0 release-it --config config/.release-it.json"
},
"dependencies": {
"graceful-fs": "4.2.11",
"retry": "0.13.1",
"signal-exit": "4.1.0"
},
"devDependencies": {
"@jest/globals": "29.7.0",
"@segment/clear-timeouts": "2.0.0",
"@types/graceful-fs": "4.1.9",
"@types/jest": "^29.5.14",
"@types/node": "20.17.12",
"@types/retry": "0.12.5",
"eslint": "9.17.0",
"execa": "5.1.1",
"jest": "29.7.0",
"ts-jest": "29.2.5",
"tsx": "4.19.2",
"typescript": "5.7.3",
"typescript-eslint": "8.19.1",
"@commitlint/cli": "20.4.3",
"@commitlint/config-conventional": "20.4.3",
"@release-it/conventional-changelog": "10.0.5",
"commitizen": "4.3.1",
"cz-conventional-changelog": "3.3.0",
"husky": "9.1.7",
"release-it": "19.2.4"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
}
}