-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.02 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
{
"name": "web-soft-project",
"author": {
"name": "DonVietnam",
"email": "don.vietnam.js@gmail.com"
},
"version": "1.1.0",
"description": "Cli tool for generating projects templates.",
"license": "MIT",
"keywords": [
"vietnam",
"nodejs"
],
"repository": {
"type": "git",
"url": "https://github.com/LLC-WebSoft/web-soft-project"
},
"bugs": {
"url": "https://github.com/LLC-WebSoft/web-soft-project/issues",
"email": "don.vietnam.js@gmail.com"
},
"homepage": "https://github.com/LLC-WebSoft/web-soft-project",
"files": [
"lib/",
"cli.js",
".gitignore"
],
"scripts": {
"start": "node cli.js",
"lint": "eslint --ignore-path .gitignore .",
"fix": "eslint --fix --ignore-path .gitignore .",
"prettier": "npx prettier --write ."
},
"engines": {
"node": ">=16"
},
"devDependencies": {
"eslint": "^7.8.1",
"eslint-config-prettier": "^8.3.0",
"prettier": "2.5.1"
},
"dependencies": {
"parse-options": "^1.0.2"
},
"bin": "cli.js"
}