-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
57 lines (57 loc) · 1.41 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
{
"name": "npmrc-replace-env",
"version": "1.1.4",
"description": "A utility for generating .npmrc files based on configuration template and environment variables.",
"license": "MIT",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"bin": "dist/cli.js",
"scripts": {
"build": "tsup src/index.ts src/cli.ts --format cjs,esm --dts",
"release": "pnpm run build && changeset publish",
"test": "jest",
"lint": "tsc"
},
"dependencies": {
"dotenv-flow": "^4.1.0",
"yargs": "^17.7.2"
},
"devDependencies": {
"@changesets/cli": "^2.27.1",
"@types/jest": "^29.5.12",
"@types/node": "^20.11.27",
"@types/yargs": "^17.0.32",
"jest": "^29.7.0",
"ts-jest": "^29.1.2",
"tsup": "^8.0.2",
"typescript": "^5.4.2"
},
"files": [
"dist/*.js",
"dist/*.cjs",
"dist/*.mjs",
"dist/*.d.ts",
"dist/*.d.mts"
],
"author": "Dennis Zimmermann <https://github.com/dennzimm>",
"homepage": "https://github.com/dennzimm/npmrc-replace-env#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/dennzimm/npmrc-replace-env.git"
},
"bugs": "https://github.com/dennzimm/npmrc-replace-env/issues",
"keywords": [
"npmrc",
"npmrc-generator",
"config-template",
"configuration",
"config",
"generator",
"environment-variables",
"env",
"devops",
"utility",
"cli"
]
}