-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 2.17 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "env-agent",
"version": "2.5.1",
"description": "Easily parse, configure and expand environment variables from .env files at runtime.",
"main": "dist/esm/env-agent.js",
"module": "dist/esm/env-agent.js",
"types": "dist/env-agent.d.ts",
"type": "module",
"exports": {
".": {
"import": "./dist/esm/env-agent.js",
"require": "./dist/cjs/env-agent.cjs",
"default": "./dist/esm/env-agent.js"
}
},
"files": [
"dist",
"lib",
"CHANGELOG.md",
"package.json",
"README.md",
"LICENSE",
"tsconfig.json"
],
"scripts": {
"test": "ts-mocha -p tsconfig.json --recursive test/**/*.test.ts",
"clean": "rimraf dist",
"build": "npm run clean && tsc && rollup -c rollup.config.js --bundleConfigAsCjs",
"build:watch": "npm run build -- --watch",
"release:patch": "npm run release -- --release-as patch",
"release:minor": "npm run release -- --release-as minor",
"release:major": "npm run release -- --release-as major",
"release": "npm run build && standard-version -a",
"push:tags": "git push --follow-tags origin main"
},
"repository": {
"type": "git",
"url": "git+https://github.com/itsmichaelbtw/env-agent.git"
},
"bugs": {
"url": "https://github.com/itsmichaelbtw/env-agent/issues"
},
"homepage": "https://github.com/itsmichaelbtw/env-agent#readme",
"keywords": [
"environment-variables",
"dotenv",
"env",
"env-agent"
],
"devDependencies": {
"@babel/preset-env": "^7.20.2",
"@babel/preset-typescript": "^7.18.6",
"@rollup/plugin-babel": "^6.0.2",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-typescript": "^9.0.2",
"@types/chai": "^4.3.4",
"@types/mocha": "^10.0.0",
"@types/node": "^18.11.9",
"chai": "^4.3.7",
"mocha": "^10.1.0",
"rimraf": "^3.0.2",
"rollup": "^3.3.0",
"standard-version": "^9.5.0",
"ts-mocha": "^10.0.0",
"typescript": "^4.8.4"
},
"standard-version": {
"scripts": {
"prerelease": "git add dist",
"posttag": "npm run push:tags"
}
},
"author": "Michael Cizek",
"contributors": [
"Michael Cizek <itsmichaelbtw@gmail.com"
],
"license": "MIT"
}