-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1002 Bytes
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 1002 Bytes
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
{
"name": "single-instance-lock",
"version": "1.0.1",
"description": "Module creating single instance lock",
"keywords": [
"single-instance"
],
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"compile": "tsc",
"watch": "tsc -w"
},
"directories": {
"lib": "lib"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Maaaartin/single-instance-lock.git"
},
"author": "Martin Svoboda",
"license": "MIT",
"bugs": {
"url": "https://github.com/Maaaartin/single-instance-lock/issues"
},
"homepage": "https://github.com/Maaaartin/single-instance-lock#readme",
"devDependencies": {
"@types/node": "^14.0.12",
"@typescript-eslint/eslint-plugin": "^3.2.0",
"@typescript-eslint/parser": "^3.2.0",
"eslint": "^7.2.0",
"typescript": "^3.9.5"
},
"dependencies": {
"events": "^3.2.0",
"fs": "^0.0.1-security",
"net": "^1.0.2"
}
}