This repository was archived by the owner on Sep 27, 2022. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.14 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.14 KB
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
{
"name": "pm2-env-module",
"version": "0.0.6",
"description": "Module to auto-rename .env file of process",
"main": "app.js",
"keywords": [
"pm2",
"module",
"env",
"dotenv",
"enviroment"
],
"dependencies": {
"pino": "^4.15.4",
"pm2": "^3.5.1",
"pmx": "latest"
},
"devDependencies": {
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.17.3",
"eslint-plugin-jest": "^21.27.2"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Manuel Spigolon <behemoth89@gmail.com> (https://github.com/Eomm)",
"repository": {
"type": "git",
"url": "https://github.com/Eomm/pm2-env-module"
},
"bugs": {
"url": "https://github.com/Eomm/pm2-env-module/issues"
},
"homepage": "https://github.com/Eomm/pm2-env-module",
"license": "MIT",
"apps": [
{
"name": "pm2-env-module",
"script": "app.js",
"max_memory_restart": "50M"
}
],
"config": {
"envFilename": ".env",
"envRelativePath": "",
"envVariableName": "NODE_ENV",
"buildEnvFile": false,
"logLevel": "info"
}
}