-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
49 lines (49 loc) · 1.04 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
{
"name": "classenv",
"version": "1.4.1",
"description": "Describe your environment variables contract with TypeScript class decorator",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsc -p tsconfig.build.json",
"test": "npx jest",
"format": "prettier --write \"src/**/*.ts\" --loglevel warn",
"prebuild": "rm -rf ./dist",
"prepublishOnly": "npm run build"
},
"author": "bowzee",
"repository": {
"type": "git",
"url": "https://github.com/dilame/classenv"
},
"license": "ISC",
"devDependencies": {
"@types/jest": "^25.1.4",
"@types/node": "^17.0.31",
"jest": "^25.1.0",
"prettier": "^2.7.1",
"ts-jest": "^25.2.1",
"typescript": "^4.8.4"
},
"peerDependencies": {
"reflect-metadata": "^0.1.13"
},
"keywords": [
"typescript",
"class",
"environment",
"env",
"variables",
"decorator",
"dotenv",
".env",
"config",
"settings",
"process",
"process.env",
"defaults"
]
}