-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
38 lines (38 loc) · 839 Bytes
/
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
{
"name": "envuments",
"version": "1.0.8",
"description": "A config system which allows you to pull formatted data from your desired key-value config store.",
"keywords": [
"env",
".env",
"dotenv",
"environment",
"variables",
"config",
"configuration",
"settings"
],
"main": "compiled/index.js",
"types": "compiled/index.d.ts",
"files": [
"compiled"
],
"scripts": {
"prepublishOnly": "tsc"
},
"repository": "https://github.com/victiondev/envuments",
"author": "Mason Rogers <[email protected]>",
"license": "MIT",
"dependencies": {
"dotenv": "^8.2.0"
},
"devDependencies": {
"@types/dotenv": "^8.2.0",
"@types/node": "^13.1.8",
"nodemon": "^2.0.2",
"typescript": "^3.7.5"
},
"peerDependencies": {
"reflect-metadata": "^0.1.13"
}
}