-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.11 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
{
"name": "mac-trash",
"version": "3.0.0",
"description": "Zero-dependency macOS CLI tool to move files to the Trash",
"author": "Johan Satgé",
"bin": {
"trash": "./src/cli.js"
},
"scripts": {
"cli": "node src/cli.js",
"lint": "eslint .",
"test": "nyc --reporter=text mocha test/*.spec.js && rm -r .nyc_output",
"test-ci": "nyc --reporter=lcov mocha test/*.spec.js && codecov"
},
"files": [
"src/**/*.js",
"package.json",
"readme.md",
"license.md"
],
"repository": {
"type": "git",
"url": "https://github.com/johansatge/mac-trash"
},
"bugs": {
"url": "https://github.com/johansatge/mac-trash/issues"
},
"keywords": [
"mac",
"macos",
"apple",
"trash",
"recycle",
"bin",
"corbeille",
"rm",
"cli",
"shell",
"terminal"
],
"devDependencies": {
"chai": "^4.3.4",
"codecov": "^3.8.3",
"eslint": "^8.6.0",
"eslint-plugin-prettier": "^4.0.0",
"mocha": "^9.1.3",
"nyc": "^15.1.0",
"prettier": "^2.5.1"
},
"engines": {
"node": ">=14"
},
"preferGlobal": true,
"license": "MIT"
}