-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
67 lines (67 loc) · 1.6 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
{
"name": "ghenv",
"version": "0.1.6",
"description": "Store .env files securely in GitHub and share them across different machines and people.",
"bin": "ghenv.js",
"main": "ghenv.js",
"scripts": {
"lint": "eslint .",
"test": "echo test",
"release": "dotenv -e .token release-it --",
"toc": "markdown-toc README.md -i"
},
"engines": {
"node": ">=10"
},
"keywords": [
".env",
"dotenv",
"environment",
"settings"
],
"repository": {
"type": "git",
"url": "git+https://github.com/simoneb/ghenv.git"
},
"author": "Simone Busoli <[email protected]>",
"license": "ISC",
"dependencies": {
"archiver": "^5.1.0",
"chalk": "^4.1.0",
"concat-stream": "^2.0.0",
"conf": "^7.1.2",
"find-up": "^5.0.0",
"markdown-toc": "^1.2.0",
"node-fetch": "^3.1.1",
"open": "^7.3.0",
"pkg-dir": "^5.0.0",
"readdir-glob": "^1.1.1",
"semver": "^7.3.4",
"tweetsodium": "0.0.5",
"unzipper": "^0.10.11",
"yargs": "^16.2.0"
},
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"dotenv-cli": "^4.0.0",
"eslint": "^7.16.0",
"eslint-config-prettier": "^7.1.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.3.0",
"husky": "^4.3.6",
"jest": "^26.6.3",
"lint-staged": "^10.5.3",
"prettier": "^2.2.1",
"release-it": "^14.2.2"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": "eslint --cache --fix"
}
}