-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.27 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.27 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
47
48
49
{
"name": "@do-while-for-each/env",
"description": "Working with environment variables for Node.js apps",
"version": "1.0.7",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/types/index.d.ts",
"homepage": "https://github.com/dwfe/env",
"bugs": "https://github.com/dwfe/env/issues",
"repository": {
"type": "git",
"url": "git@github.com:dwfe/env.git"
},
"keywords": [
"environment variables",
"environment",
"env"
],
"author": "Do|While|For|Each",
"license": "MIT",
"files": [
"dist",
"LICENSE",
"README.md"
],
"bundledDependencies": [
"dotenv",
"dotenv-expand"
],
"dependencies": {
"dotenv": "10.0.0",
"dotenv-expand": "5.1.0"
},
"devDependencies": {
"@do-while-for-each/tsconfig": "1.x.x",
"@do-while-for-each/common": "2.x.x"
},
"scripts": {
"clean": "dwfeFs cleanDir . --fileNames=\"dist;node_modules;package-lock.json\"",
"build": "dwfeFs rmForce dist --noConfirm && tsc -b src/tsconfig.json config/tsconfig.esm.json",
"types": "tsc -b config/tsconfig.types.json",
"version": "npm run build && npm run types",
"deploy": "npm version patch && npm publish",
"tgz": "npm run build && npm pack"
},
"publishConfig": {
"access": "public"
}
}