-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
104 lines (100 loc) · 2.69 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "nginx-domain-assist",
"version": "2.3.7",
"description": "Manage Nginx domains on Ubuntu based Machines",
"main": "index.js",
"type": "module",
"scripts": {
"coverage": "nyc npm run test",
"test": "mocha --experimental-loader=@istanbuljs/esm-loader-hook 'src/**/*.test.js' --recursive --timeout 60000 ",
"publish-package": "npm publish"
},
"bin": {
"create-redirected-nginx-domain": "bin/redirected_domain.js",
"domain-status-by-name": "bin/domain_status.js",
"create-static-nginx-domain": "bin/static_domain.js",
"delete-nginx-domain": "bin/delete_domain.js",
"list-all-nginx-domains": "bin/list_domains.js",
"list-all-nginx-sites": "bin/list_domains.js",
"delete-nginx-site": "bin/delete_site.js",
"@nginx-domain-assist/create-redirected-domain": "bin/redirected_domain.js",
"@nginx-domain-assist/create-static-domain": "bin/static_domain.js",
"@nginx-domain-assist/delete-site": "bin/delete_site.js",
"@nginx-domain-assist/list-sites": "bin/list_sites.js"
},
"nyc": {
"check-coverage": true,
"all": true,
"lines": 70,
"branches": 70,
"statements": 70,
"include": [
"src/**/!(*.test.*).[tj]s?(x)"
],
"exclude": [
"src/nginx.js",
"src/shared/input_arg_processor.js"
],
"reporter": [
"cobertura",
"html",
"lcov",
"text",
"text-summary"
],
"report-dir": "coverage"
},
"release-it": {
"hooks": {
"before:init": "npm test",
"after:git:release": "echo After git push, before github release",
"after:release": "echo Successfully released ${name} v${version} to ${repo.repository}."
},
"git": {
"commitMessage": "muthuishere: release v${version}"
},
"npm": {
"publish": false
}
},
"keywords": [
"nginx",
"domain",
"redirect",
"static",
"site",
"create",
"ubuntu",
"linux"
],
"author": "Muthukumaran Navaneethakrishnan(https://github.com/muthuishere/)",
"license": "MIT",
"homepage": "https://github.com/muthuishere/nginx-domain-assist",
"repository": {
"type": "git",
"url": "[email protected]:muthuishere/nginx-domain-assist.git"
},
"bugs": {
"url": "https://github.com/muthuishere/nginx-domain-assist/issues"
},
"engines": {
"node": ">=14.0.0"
},
"devDependencies": {
"@istanbuljs/esm-loader-hook": "^0.2.0",
"chai": "^4.3.7",
"mocha": "^10.2.0",
"nyc": "^15.1.0",
"prettier": "^2.7.1",
"release-it": "*",
"sinon": "^15.0.1"
},
"dependencies": {
"command-exists": "^1.2.9",
"dotenv": "^16.3.1",
"inquirer": "^8.2.5",
"shelljs": "^0.8.5",
"which": "^3.0.0",
"yargs": "^17.6.2"
}
}