-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 846 Bytes
/
package.json
File metadata and controls
44 lines (44 loc) · 846 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
41
42
43
44
{
"name": "fcntl.js",
"author": "Rhodey",
"description": "Use fcntl with node",
"version": "1.0.1",
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/rhodey/fcntl.js.git"
},
"homepage": "https://github.com/rhodey/fcntl.js",
"main": "index.js",
"types": "types.d.ts",
"gypfile": true,
"scripts": {
"build": "node-gyp-build",
"rebuild": "node-gyp-build rebuild",
"prepack": "node-gyp-build",
"test": "tape test/test.js"
},
"engines": {
"node": ">=18"
},
"os": [
"linux",
"darwin",
"freebsd"
],
"dependencies": {
"node-addon-api": "^7.1.0",
"node-gyp-build": "^4.8.0"
},
"devDependencies": {
"minimist": "^1.2.0",
"tape": "^5.9.0"
},
"keywords": [
"lock",
"file-lock",
"lock-file",
"fcntl",
"posix"
]
}