-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.11 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": "envmagic",
"description": "A smarter way of managing environment variables",
"version": "0.1.2",
"author": "Austin Kurpuis <[email protected]> (https://www.austinkurpuis.com/)",
"bugs": {
"url": "https://github.com/imaustink/envmagic/issues"
},
"devDependencies": {
"@types/jest": "^29.5.3",
"@types/node": "^20.4.4",
"esbuild": "^0.18.15",
"jest": "^29.6.1",
"prettier": "^3.0.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.1.6"
},
"homepage": "https://github.com/imaustink/envmagic#readme",
"keywords": [
"config",
"environment",
"variables"
],
"license": "MIT",
"main": "dist/index.js",
"types": "src/index.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/imaustink/envmagic.git"
},
"scripts": {
"build": "esbuild src/*.ts --outdir=dist --platform=node --target=node14.0",
"format:check": "./node_modules/.bin/prettier . --check",
"format:write": "./node_modules/.bin/prettier . --write",
"test": "jest"
},
"type": "module",
"dependencies": {
"3": "^2.1.0"
}
}