-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.45 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.45 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
{
"name": "bkp-node",
"version": "1.1.0",
"description": "A CLI tool to handle encrypted compressed backups of files or directory",
"keywords": [
"backup",
"archive",
"encrypt",
"cli"
],
"author": "Mike AUBENAS",
"license": "MIT",
"bin": {
"bkp": "./bin/cli.js"
},
"files": [
"src",
"bin/cli.js"
],
"main": "src/Main.ts",
"repository": {
"type": "git",
"url": "https://github.com/MikyStar/bkp-node"
},
"scripts": {
"dev": "nodemon",
"start": "NODE_ENV=dev npm run build && node build/Main.js",
"build": "webpack-cli",
"make-binary": "./scripts/make-binary.sh",
"prepublishOnly": "npm run make-binary",
"security:audit": "npm audit --production --audit-level=moderate --registry=https://registry.npmjs.org",
"security:fix": "npm audit fix --production --audit-level=moderate --registry=https://registry.npmjs.org",
"dependencies:check": "ncu -e 2",
"dependencies:update": "ncu -u && npm run clear && npm install && npm run security:audit",
"clear": "rm -rf node_modules build bin"
},
"devDependencies": {
"tslint": "^5.20.1",
"typescript": "^4.6.3"
},
"dependencies": {
"@types/jest": "^28.1.4",
"@types/node": "^18.0.3",
"@types/prompts": "^2.0.14",
"chalk": "^4.1.2",
"compressing": "^1.6.0",
"dotenv": "^16.0.0",
"jest": "^28.1.2",
"password-prompt": "^1.1.2",
"ts-loader": "^9.2.9",
"ts-node": "^10.7.0",
"webpack": "^5.72.0",
"webpack-cli": "^4.9.2",
"webpack-node-externals": "^3.0.0"
}
}