-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
46 lines (46 loc) · 1.19 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
{
"name": "babel-plugin-inline-dotenv",
"version": "1.6.0",
"description": "Load your `.env` file and replace `process.env.MY_VARIABLE` with the value you set.",
"main": "src/index.js",
"scripts": {
"test": "EXAMPLE_ENV_VAR_SYSTEM=system EXAMPLE_ENV_VAR_SECRET=secret mocha --require @babel/register",
"test:watch": "npm run test -- --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/brysgo/babel-plugin-inline-dotenv.git"
},
"keywords": [
"babel",
"plugin",
"dotenv"
],
"author": "Bryan Goldstein",
"license": "ISC",
"bugs": {
"url": "https://github.com/brysgo/babel-plugin-inline-dotenv/issues"
},
"homepage": "https://github.com/brysgo/babel-plugin-inline-dotenv#readme",
"dependencies": {
"dotenv": "^16.0.0"
},
"peerDependencies": {
"dotenv-expand": ">= 5.0.0"
},
"peerDependenciesMeta": {
"dotenv-expand": {
"optional": true
}
},
"devDependencies": {
"@babel/cli": "^7.10.5",
"@babel/core": "^7.11.1",
"@babel/preset-env": "^7.11.0",
"@babel/register": "^7.10.5",
"babel-eslint": "^10.1.0",
"dotenv-expand": "^8.0.1",
"mocha": "9.2.0",
"prettier": "^2.0.5"
}
}