-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
42 lines (42 loc) · 1.43 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
{
"name": "generate-env-example",
"version": "0.0.0-development",
"description": "Generate your .env.example file in a simple and fast way, you will never have to worry about manually updating your example file of environment variables!",
"author": "Celsodias12 <[email protected]>",
"homepage": "https://github.com/celsodias12/generate-env-example#readme",
"repository": {
"type": "git",
"url": "https://github.com/celsodias12/generate-env-example.git"
},
"bugs": {
"url": "https://github.com/celsodias12/generate-env-example/issues"
},
"license": "MIT",
"type": "module",
"bin": "src/index.js",
"main": "src/index.js",
"scripts": {
"start": "node src/index.js",
"lint": "eslint src/** --ext .js --fix",
"semantic-release": "semantic-release --branches main",
"prepare": "husky install"
},
"engines": {
"yarn": "ONLY THE USE OF NPM IS ALLOWED"
},
"devDependencies": {
"@commitlint/cli": "^17.0.3",
"@commitlint/config-conventional": "^17.0.3",
"eslint": "^7.21.0",
"eslint-config-prettier": "^8.1.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-import-helpers": "^1.1.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-unused-imports": "1.1.5",
"husky": "^7.0.0",
"semantic-release": "^19.0.2"
}
}