forked from wxygeek/linux-user
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.19 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.19 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
{
"name": "linux-sys-user",
"version": "1.2.0",
"description": "Node.js module for Linux user and group management with zero dependencies",
"author": [
{
"name": "William Mantly",
"email": "wmantly@gmail.com"
},
{
"name": "GKuChan",
"email": "gkuchan_root@outlook.com"
}
],
"keywords": [
"linux",
"user",
"ACL",
"useradd",
"passwd",
"chage",
"usermod",
"userdel",
"groupadd",
"groupmod",
"groupdel",
"gpasswd",
"pam",
"ssh-keygen",
"ssh",
"ts",
"typescript",
"system-administration",
"linux-users",
"linux-groups"
],
"scripts": {
"test": "mocha",
"test-coverage": "nyc mocha",
"lint": "jshint lib/ test/",
"lint:fix": "jshint lib/ test/ --fix"
},
"engines": {
"node": ">=6.0.0"
},
"devDependencies": {
"jshint": "^2.13.4",
"mocha": "^9.2.2",
"nyc": "^15.1.0",
"should": "^13.2.3"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/wmantly/linux-user.git"
},
"bugs": {
"url": "https://github.com/wmantly/linux-user/issues"
},
"homepage": "https://github.com/wmantly/linux-user#readme"
}