-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.26 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 1.26 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
62
63
{
"name": "chmod-cli",
"version": "2.0.2",
"description": "A simple command line tool for changing file permissions.",
"license": "MIT",
"type": "module",
"exports": "./chmod.js",
"types": "./index.d.ts",
"bin": {
"chmod-cli": "./cli.js"
},
"author": "kenny wong <wowohoo@qq.com>",
"homepage": "http://jaywcjlove.github.io/chmod-cli",
"funding": "https://jaywcjlove.github.io/#/sponsor",
"repository": {
"type": "git",
"url": "https://github.com/jaywcjlove/chmod-cli.git"
},
"scripts": {
"build": "idoc",
"test": "NODE_OPTIONS=--experimental-vm-modules jest",
"coverage": "NODE_OPTIONS=--experimental-vm-modules jest --coverage"
},
"files": [
"index.d.ts",
"cli.js",
"chmod.js"
],
"keywords": [
"cli-app",
"cli",
"chmod",
"chmod-cli",
"permissions",
"file",
"directory",
"string",
"unix",
"rwx",
"read",
"write",
"execute",
"linux"
],
"jest": {
"testMatch": [
"**/?(*.)+(spec|test).[tj]s?(x)"
],
"transformIgnorePatterns": [
"<rootDir>/node_modules/?!(.*)"
]
},
"engines": {
"node": ">=16.10"
},
"dependencies": {
"meow": "^12.0.0"
},
"devDependencies": {
"idoc": "^1.21.15",
"jest": "^29.5.0"
}
}