-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
42 lines (42 loc) · 1.06 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
{
"name": "processenv2",
"version": "2.0.2",
"description": "parse .env files to load variables to the process.env property automatically",
"main": "lib/processenv2.js",
"scripts": {
"test": "jest",
"docs": "npm run docs-html && npm run docs-md",
"docs-html": "documentation build lib/** -f html --github -o docs",
"docs-md": "documentation build lib/** -f md --shallow -o docs/DOCUMENTATION.md"
},
"jest": {
"collectCoverage": true,
"coverageReporters": [
"text"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/Nexus633/processenv2.git"
},
"keywords": [
"env",
"dotenv",
"environment",
"parse",
"processenv"
],
"author": "Andre Rohlf",
"license": "MIT",
"bugs": {
"url": "https://github.com/Nexus633/processenv2/issues"
},
"homepage": "https://github.com/Nexus633/processenv2#readme",
"devDependencies": {
"documentation": "^14.0.2",
"eslint": "8.52.0",
"eslint-plugin-sort-requires": "^2.1.0",
"jest": "^29.7.0",
"prettier": "3.0.3"
}
}