-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
20 lines (20 loc) · 978 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{
"name": "rmrec-main",
"version": "1.2.7",
"description": "Runs a native command `rd` or `rf` based on OS by creating & running a child process to delete a folder recursively.",
"main": "index.js",
"author": "Alpha Xek @alphaxek",
"license": "ISC",
"scripts": {
"copy-test-data" : "copyfiles -u 1 ./__tests__/test-data/txt/test-data.txt ./__tests__/to-be-deleted-test-data && copyfiles -u 1 ./__tests__/test-data/xml/test-data.xml ./__tests__/to-be-deleted-test-data",
"test": "jest --clearCache && pnpm run copy-test-data && node ./src/main.js ./__tests__/to-be-deleted-test-data && jest",
"build": "pnpm install",
"clean": "node ./dist/rmrec/main.js ./node_modules",
"dist": "copyfiles -u 1 ./src/index.js ./dist/rmrec && copyfiles -u 1 ./src/main.js ./dist/rmrec && copyfiles ./README.md ./dist/rmrec"
},
"repository": "git://github.com/alphaxek/rmrec.git",
"devDependencies": {
"jest": "^29.3.1",
"copyfiles": "^2.4.1"
}
}