-
-
Notifications
You must be signed in to change notification settings - Fork 48
/
package.json
113 lines (113 loc) · 2.32 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"name": "react-native-dotenv",
"version": "3.4.11",
"description": "Load environment variables using import statements.",
"repository": {
"type": "git",
"url": "https://github.com/goatandsheep/react-native-dotenv.git"
},
"homepage": "https://github.com/goatandsheep/react-native-dotenv",
"bugs": "https://github.com/goatandsheep/react-native-dotenv/issues",
"main": "index.js",
"scripts": {
"lint": "xo",
"lint:fix": "xo --fix",
"test": "jest"
},
"keywords": [
"dotenv",
"babel-plugin",
"babel",
"dotenv-flow",
"react",
"react-native",
"config",
"env",
"12factor"
],
"dependencies": {
"dotenv": "^16.4.5"
},
"devDependencies": {
"@babel/core": "^7.23.9",
"codecov": "^3.8.3",
"jest": "29.7.0",
"jest-junit": "^16.0.0",
"xo": "^0.57.0"
},
"author": "Kemal Ahmed",
"license": "MIT",
"files": [
"index.js"
],
"jest": {
"testEnvironment": "node",
"testPathIgnorePatterns": [
"/node_modules/",
"/__fixtures__/"
],
"reporters": [
"default",
[
"jest-junit",
{
"outputDirectory": "reports/tests"
}
]
],
"collectCoverage": true,
"collectCoverageFrom": [
"index.js"
],
"coverageReporters": [
"lcov",
"text-summary"
]
},
"peerDependencies": {
"@babel/runtime": "^7.20.6"
},
"resolutions": {
"@babel/core": "^7.20.5",
"@babel/runtime": "^7.20.6"
},
"xo": {
"semicolon": false,
"space": 2,
"overrides": [
{
"files": "**/*",
"rules": {
"unicorn/prefer-module": "off",
"unicorn/prefer-node-protocol": "off",
"node/prefer-global/process": "off",
"n/prefer-global/process": "off",
"prefer-destructuring": "off"
}
},
{
"files": "__tests__/**/*.js",
"env": [
"jest"
]
},
{
"files": "__tests__/__fixtures__/**/*.js",
"rules": {
"import/no-unresolved": [
"error",
{
"ignore": [
"@env",
"foo",
"react-native-dotenv"
]
}
],
"unicorn/import-style": "off",
"no-unused-vars": "off"
}
}
]
}
}