-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
37 lines (37 loc) · 891 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
{
"name": "insomnia-plugin-dotenv",
"version": "1.2.0",
"description": "Insomnia template tag to pull data from .env file",
"author": "Edirin Atumah <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/bongosway/insomnia-plugin-dotenv"
},
"bugs": {
"url": "https://github.com/bongosway/insomnia-plugin-dotenv/issues"
},
"homepage": "https://github.com/bongosway/insomnia-plugin-dotenv",
"keywords": [
"insomnia",
"api",
"insomnia-plugin"
],
"scripts": {
"test": "jest"
},
"license": "MIT",
"main": "index.js",
"insomnia": {
"name": "dotenv",
"description": "Template tag to pull data from from .env file"
},
"dependencies": {
"dotenv": "^8.2.0",
"dotenv-expand": "^5.1.0",
"fs": "^0.0.1-security",
"untildify": "^4.0.0"
},
"devDependencies": {
"jest": "^29.7.0"
}
}