-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.14 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.14 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
{
"version": "2.0.50",
"name": "dynenv",
"description": "Dynamically loads environment variables from modules and then spawns a child process with them",
"author": "Dawson Toth",
"keywords": [
"dotenv"
],
"homepage": ".",
"type": "module",
"license": "ISC",
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"tag": "latest",
"provenance": true
},
"repository": "github:dawsontoth/dynenv",
"main": "index.js",
"bin": {
"dynenv": "./index.js"
},
"scripts": {
"test": "vitest",
"test:ci": "vitest run",
"test:coverage": "vitest run --coverage",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"dependencies": {
"cross-spawn": "^7.0.3"
},
"devDependencies": {
"@eslint/js": "^9.39.1",
"@semantic-release/commit-analyzer": "^13.0.1",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^12.0.2",
"@semantic-release/npm": "^13.1.1",
"@semantic-release/release-notes-generator": "^14.1.0",
"@vitest/coverage-v8": "^4.0.8",
"conventional-changelog-conventionalcommits": "^9.1.0",
"eslint": "^9.39.1",
"globals": "^17.0.0",
"semantic-release": "^25.0.2",
"vitest": "^4.0.8"
}
}