-
Notifications
You must be signed in to change notification settings - Fork 34
/
package.json
51 lines (51 loc) · 1.27 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
{
"name": "safe-rm",
"version": "2.0.0",
"description": "A much safer replacement of bash rm with nearly full functionalities and options of the rm command!",
"bin": {
"safe-rm": "./bin/rm.sh"
},
"scripts": {
"test": "ava --timeout=10s --verbose",
"test:dev": "NODE_DEBUG=safe-rm npm run test",
"test:debug": "SAFE_RM_DEBUG=1 npm run test:dev",
"test:mock-linux": "SAFE_RM_DEBUG_LINUX=1 npm run test",
"test:mock-linux:debug": "SAFE_RM_DEBUG=1 SAFE_RM_DEBUG_LINUX=1 npm run test:dev",
"lint": "eslint .",
"fix": "eslint . --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kaelzhang/shell-safe-rm.git"
},
"keywords": [
"safe-rm",
"cli",
"rm",
"linux",
"alternative",
"trash"
],
"ava": {
"files": [
"test/*.test.js"
]
},
"author": "kael",
"license": "MIT",
"bugs": {
"url": "https://github.com/kaelzhang/shell-safe-rm/issues"
},
"homepage": "https://github.com/kaelzhang/shell-safe-rm#readme",
"devDependencies": {
"@ostai/eslint-config": "^4.0.0",
"ava": "^6.2.0",
"delay": "^5.0.0",
"eslint": "^8.57.0",
"eslint-plugin-import": "^2.31.0",
"fs-extra": "^11.2.0",
"home": "^2.0.0",
"tmp": "^0.2.3",
"uuid": "^11.0.3"
}
}