-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
52 lines (52 loc) · 1.07 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
{
"name": "getdents",
"description": "Call getdents(2) from Javscript",
"version": "4.0.0",
"homepage": "https://github.com/davedoesdev/getdents",
"author": {
"name": "David Halls",
"email": "[email protected]",
"url": "http://www.davedoesdev.com"
},
"repository": {
"type": "git",
"url": "https://github.com/davedoesdev/getdents.git"
},
"bugs": {
"url": "https://github.com/davedoesdev/getdents/issues"
},
"license": "MIT",
"main": "lib/getdents.js",
"scripts": {
"test": "grunt lint test",
"coverage": "grunt coverage"
},
"directories": {
"lib": "lib",
"test": "test"
},
"keywords": [
"getdents",
"readdir"
],
"dependencies": {
"bindings": "^1.5.0",
"node-addon-api": "^7.0.0"
},
"devDependencies": {
"c8": "^8.0.1",
"chai": "^4.3.10",
"documentation": "^14.0.2",
"grunt": "^1.6.1",
"grunt-eslint": "^24.3.0",
"grunt-exec": "^3.0.0",
"grunt-mocha-test": "^0.13.3",
"mocha": "^10.2.0"
},
"engines": {
"node": ">=16"
},
"os": [
"linux"
]
}