This repository has been archived by the owner on Mar 12, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 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
62
63
64
65
66
67
{
"name": "dotenv-lint",
"version": "1.0.1",
"description": "A tool for identifying issues with .env files in nodejs projects.",
"main": "dist/dotenv-lint.js",
"bin": "./dist/dotenv-lint.js",
"scripts": {
"build": "webpack --env.NODE_ENV=production",
"dev": "webpack --env.NODE_ENV=development --watch",
"test": "./node_modules/.bin/mocha --require @babel/register"
},
"repository": {
"type": "git",
"url": "git+https://github.com/agentile1990/dotenv-lint.git"
},
"keywords": [
".env",
"dotenv",
"lint",
"linter",
"envlint",
"env-lint",
"env-linter",
"environment",
"variable"
],
"author": "Andrew Gentile <[email protected]> (http://github.com/agentile1990)",
"contributors": [],
"license": "MIT",
"bugs": {
"url": "https://github.com/agentile1990/dotenv-lint/issues"
},
"homepage": "https://github.com/agentile1990/dotenv-lint#readme",
"dependencies": {
"chalk": "^4.0.0",
"dotenv": "^8.2.0",
"lodash": "^4.17.15",
"yargs": "^15.3.1"
},
"devDependencies": {
"@babel/core": "^7.9.6",
"@babel/plugin-transform-runtime": "^7.9.6",
"@babel/preset-env": "^7.9.6",
"@babel/register": "^7.9.0",
"@babel/runtime": "^7.9.6",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"eslint": "^7.0.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.3",
"husky": "^4.2.5",
"lint-staged": "^10.2.2",
"mocha": "^7.1.2",
"nodemon-webpack-plugin": "^4.3.1",
"prettier": "^2.0.5",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": "eslint --cache --fix"
}
}