-
-
Notifications
You must be signed in to change notification settings - Fork 52
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.42 KB
/
Copy pathpackage.json
File metadata and controls
69 lines (69 loc) · 1.42 KB
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "react-native-dotenv",
"version": "4.1.1",
"description": "Load .env into React Native with import statements. A Babel plugin that inlines environment variables at build time.",
"repository": {
"type": "git",
"url": "git+https://github.com/dotenvx/react-native-dotenv.git"
},
"homepage": "https://github.com/dotenvx/react-native-dotenv",
"bugs": "https://github.com/dotenvx/react-native-dotenv/issues",
"main": "index.js",
"scripts": {
"standard": "standard",
"standard:fix": "standard --fix",
"test": "jest"
},
"keywords": [
"dotenv",
"babel-plugin",
"babel",
"dotenv-flow",
"react",
"react-native",
"config",
"env",
"12factor"
],
"dependencies": {
"dotenv": "^17.4.2"
},
"devDependencies": {
"@babel/core": "^7.29.7",
"jest": "30.4.2",
"standard": "^17.1.2"
},
"overrides": {
"brace-expansion": "^5.0.8",
"minimatch": "^10.2.5"
},
"author": "@motdotla",
"license": "MIT",
"files": [
"index.js"
],
"jest": {
"testEnvironment": "node",
"coverageProvider": "v8",
"testPathIgnorePatterns": [
"/node_modules/",
"/fixtures/"
],
"collectCoverage": true,
"collectCoverageFrom": [
"index.js"
],
"coverageReporters": [
"lcov",
"text-summary"
]
},
"standard": {
"env": [
"jest"
],
"ignore": [
"tests/fixtures/**"
]
}
}