-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
61 lines (61 loc) · 1.71 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
{
"name": "gen-env-template",
"version": "2.1.1",
"description": "Generate .env template file from .env",
"main": "src/bin/run",
"scripts": {
"lint": "eslint --ext .js .",
"prepare": "husky install",
"test": "GEN_ENV_TEMPLATE_BASE=$PWD GEN_ENV_TEMPLATE_ABSOLUTE_PATH=$PWD/src/bin/run jest",
"test:all": "npm run test:unit && npm run test:e2e",
"test:unit": "jest -t unit --verbose",
"test:e2e": "jest -t e2e --verbose",
"lint:staged": "lint-staged"
},
"bin": {
"genv": "src/bin/run",
"gen-env-template": "src/bin/run"
},
"files": [
"/src"
],
"lint-staged": {
"*.js": [
"eslint"
]
},
"keywords": [
"dotenv",
"env",
"template",
"generate",
"cli",
"oclif"
],
"homepage": "https://github.com/mrsauravsahu/gen-env-template",
"bugs": {
"email": "[email protected]",
"url": "https://github.com/mrsauravsahu/gen-env-template"
},
"author": "Saurav Sahu <[email protected]>",
"license": "MIT",
"devDependencies": {
"@babel/eslint-parser": "^7.16.5",
"@oclif/config": "^1.18.2",
"@oclif/dev-cli": "^1.26.10",
"@oclif/plugin-help": "^3.3.1",
"@types/jest": "^26.0.24",
"all-contributors-cli": "^6.20.0",
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.25.4",
"husky": "^6.0.0",
"jest": "^27.4.7",
"lint-staged": "^10.5.4",
"shelljs": "^0.8.5"
},
"dependencies": {
"@oclif/command": "^1.8.36",
"@oclif/errors": "^1.3.6"
}
}