forked from brysgo/babel-plugin-inline-dotenv
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.29 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
47
48
49
50
{
"name": "babel-plugin-inline-dotenv-expanded",
"version": "1.1.2",
"description": "Load your `.env` file and replace `process.env.MY_VARIABLE` with the value you set.",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/efossvold/babel-plugin-inline-dotenv-expanded.git"
},
"keywords": [
"babel",
"plugin",
"dotenv",
"dotenvf-expand"
],
"author": "Erik Fossvold",
"license": "ISC",
"bugs": {
"url": "https://github.com/efossvold/babel-plugin-inline-dotenv-expanded/issues"
},
"homepage": "https://github.com/efossvold/babel-plugin-inline-dotenv-expanded#readme",
"scripts": {
"test": "jest",
"test:watch": "jest --watch"
},
"jest": {
"testEnvironment": "node",
"testPathIgnorePatterns": [
"node_modules",
".history"
]
},
"dependencies": {
"dotenv": "^10.0.0",
"dotenv-expand": "^5.1.0"
},
"devDependencies": {
"@babel/cli": "7.15.7",
"@babel/core": "7.15.5",
"@babel/preset-env": "^7.15.6",
"babel-eslint": "^10.0.3",
"babel-plugin-tester": "^10.1.0",
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-eslint": "^7.0.0",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-node": "^11.1.0",
"jest": "^27.2.2"
}
}