-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 900 Bytes
/
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
{
"name": "clear-folder",
"version": "5.1.0",
"description": "Empties the contents of a directory, for instance your build directory",
"main": "./lib/clear-folder.js",
"bin": {
"clear-folder": "./cli.js",
"cf": "./cli.js"
},
"scripts": {
"build": "node ./cli.js probe .tap && tsc",
"coverage": "npm run build && tap test/*.js --coverage-report=lcov",
"test": "npm run build && tap test/*.js"
},
"type": "module",
"types": "lib/clear-folder.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/ovanderzee/clear-folder.git"
},
"keywords": [
"clean",
"clear",
"empty",
"directory",
"folder",
"build tool",
"cli-app",
"cli"
],
"author": "Onno van der Zee",
"license": "ISC",
"devDependencies": {
"tap": "^21.0.1",
"typescript": "^5.7.2"
},
"dependencies": {
"chalk": "^5.4.1"
}
}