-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
64 lines (64 loc) · 1.25 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
{
"name": "next-runtime-dotenv",
"version": "1.5.1",
"description": "Expose environment variables to the runtime config of Next.js",
"main": "index.js",
"license": "MIT",
"repository": "https://github.com/tusbar/next-runtime-dotenv",
"author": "Bertrand Marron <bertrand.marron@gmail.com>",
"scripts": {
"test": "jest"
},
"keywords": [
"next.js",
"next",
"plugins",
"environment",
"dotenv",
"runtime",
"configuration"
],
"dependencies": {
"dotenv": "^16.0.0"
},
"peerDependencies": {
"next": ">= 5.1.0"
},
"devDependencies": {
"@bizon/semantic-release-config": "^1.0.1",
"eslint-config-xo-bizon": "^1.1.1",
"jest": "^29.1.2",
"next": "^13.0.2",
"semantic-release": "^19.0.2",
"xo": "^0.53.1"
},
"jest": {
"collectCoverage": true,
"collectCoverageFrom": [
"index.js"
],
"coverageReporters": [
"lcov",
"text-summary"
]
},
"xo": {
"extends": "xo-bizon",
"semicolon": false,
"space": 2,
"ignores": [
"example/**"
],
"overrides": [
{
"files": "__tests__/**/*.js",
"envs": [
"jest"
]
}
]
},
"release": {
"extends": "@bizon/semantic-release-config"
}
}