-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
45 lines (45 loc) · 1.03 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
{
"name": "@lpgera/ts-env",
"version": "1.2.5",
"description": "An environment variable reader for TypeScript",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"dependencies": {},
"devDependencies": {
"@types/jest": "^29.5.7",
"@types/node": "^20.8.10",
"husky": "^8.0.3",
"jest": "^29.7.0",
"prettier": "^3.0.3",
"pretty-quick": "^3.1.3",
"ts-jest": "^29.1.1",
"typescript": "^5.2.2"
},
"scripts": {
"prepare": "rm -rf dist && tsc",
"prepublishOnly": "npm run test",
"postversion": "git push && git push --tags",
"test": "jest --coverage",
"test:watch": "jest --coverage --watchAll"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lpgera/ts-env.git"
},
"keywords": [
"typescript",
"env",
".env",
"environment",
"variables"
],
"author": "lpgera",
"license": "MIT",
"bugs": {
"url": "https://github.com/lpgera/ts-env/issues"
},
"homepage": "https://github.com/lpgera/ts-env#readme",
"files": [
"dist"
]
}