forked from jandre/node-userid
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
61 lines (61 loc) · 1.43 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
59
60
61
{
"name": "userid",
"version": "1.2.41",
"description": "Lookup uid and gid information in node.js. Uses native POSIX bindings, not processes.",
"license": "Public Domain",
"author": "Jen Andre <[email protected]>",
"contributors": [
"Cameron Tacklind <[email protected]>"
],
"repository": {
"type": "git",
"url": "https://github.com/cinderblock/node-userid.git"
},
"main": "lib/userid.js",
"types": "lib/userid.d.ts",
"files": [
"lib/userid.js",
"lib/userid.d.ts",
"src/userid.hh",
"src/userid.cc",
"src/Ids.cc",
"src/Gid.cc",
"src/Gids.cc",
"src/UserName.cc",
"src/GroupName.cc",
"binding.gyp"
],
"os": [
"!win32"
],
"engines": {
"node": ">=8.4.0"
},
"scripts": {
"test": "mocha",
"prettier": "prettier \"**\" --check",
"spelling": "cspell \"**\"",
"lint": "node scripts/lint.mjs src/*.cc src/*.hh",
"coverage": "nyc --reporter=lcov --reporter=text mocha",
"install": "npm run build",
"clean": "node-gyp clean",
"build": "node-gyp rebuild"
},
"gypfile": true,
"dependencies": {
"bindings": "^1.5.0",
"node-addon-api": "^4.3.0"
},
"devDependencies": {
"@types/mocha": "^9.1.0",
"@types/node": "^17.0.21",
"cspell": "^5.19.2",
"mocha": "^9.2.2",
"node-gyp": "^9.0.0",
"nyc": "^15.1.0",
"prettier": "^2.6.0",
"should": "^13.2.3",
"ts-node": "^10.7.0",
"typescript": "^4.6.2"
}
}