-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
45 lines (45 loc) · 1017 Bytes
/
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
{
"name": "dotenv-stringify",
"version": "3.0.1",
"description": "Compose a envfile string from an object, per the motdotla/dotenv parser specifications",
"repository": {
"type": "git",
"url": "git+https://[email protected]/compwright/dotenv-stringify.git"
},
"keywords": [
"env",
"envfile",
"dotenv",
"stringify",
"json",
"write",
"save"
],
"author": "Jonathon Hill <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/compwright/dotenv-stringify/issues"
},
"homepage": "https://github.com/compwright/dotenv-stringify#readme",
"type": "module",
"engines": {
"node": ">= 16"
},
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"files": [
"dist"
],
"devDependencies": {
"jest": "latest",
"standard": "latest",
"standard-version": "latest",
"unbuild": "latest"
}
}