-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (51 loc) · 1.36 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": "cli-task-manager",
"version": "1.0.1",
"description": "Providing an easy and usefull command line interface for managing tasks with local files",
"keywords": [
"cli",
"tasks",
"management"
],
"author": "Mike AUBENAS",
"license": "ISC",
"bin": {
"task": "./bin/cli.js"
},
"files": [
"src",
"bin/cli.js"
],
"main": "src/Main.ts",
"repository": {
"type": "git",
"url": "https://github.com/MikyStar/CLI-Manager"
},
"scripts": {
"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/prompts": "^2.0.14",
"chalk": "^4.1.2",
"dotenv": "^16.0.0",
"moment": "^2.29.3",
"prompts": "^2.4.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"
}
}