-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
38 lines (38 loc) · 999 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": "insomnia-plugin-fpf-dotenv",
"version": "1.0.1",
"description": "Insomina plugin to get environment settings from a .env file",
"author": {
"name": "Florian Pfeffer",
"email": "florian.pfeffer@outlook.com"
},
"repository": {
"type": "git",
"url": "https://github.com/pfefferf/insomnia-plugin-fpf-dotenv"
},
"bugs": {
"url": "https://github.com/pfefferf/insomnia-plugin-fpf-dotenv/issues"
},
"homepage": "https://github.com/pfefferf/insomnia-plugin-fpf-dotenv",
"keywords": [
"insomnia",
"api",
"insomnia-plugin"
],
"scripts": {
"test": "jest"
},
"license": "MIT",
"main": "index.js",
"insomnia": {
"name": "fpf-dotenv",
"description": "Plugin to get data from a .env file"
},
"dependencies": {
"dotenv": "^16.3.1",
"dotenv-expand": "^10.0.0"
},
"devDependencies": {
"jest": "^29.7.0"
}
}