forked from tusbar/babel-plugin-dotenv-import
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1 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
51
52
53
{
"name": "babel-plugin-dotenv-import",
"version": "1.4.0",
"description": "Load environment variables using import statements.",
"repository": "git@github.com:tusbar/babel-plugin-dotenv-import.git",
"main": "index.js",
"scripts": {
"test": "nyc ava"
},
"keywords": [
"dotenv",
"babel-plugin"
],
"dependencies": {
"dotenv": "^6.0.0"
},
"devDependencies": {
"ava": "^0.25.0",
"babel-core": "^6.14.0",
"codecov": "^3.0.0",
"nyc": "^12.0.2",
"xo": "^0.22.0"
},
"author": "Bertrand Marron",
"license": "MIT",
"nyc": {
"reporter": [
"lcov",
"text"
]
},
"xo": {
"semicolon": false,
"space": 2,
"overrides": [
{
"files": "test/fixtures/**/*.js",
"rules": {
"import/no-unresolved": [
"error",
{
"ignore": [
"@env",
"foo"
]
}
],
"no-unused-vars": "off"
}
}
]
}
}