-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 845 Bytes
/
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
{
"name": "@kldzj/env",
"version": "1.0.3",
"description": "A simple and type-safe env parser",
"keywords": [
"env",
"parser",
"typescript"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/**/*"
],
"bugs": "https://github.com/kldzj/env/issues",
"repository": "https://github.com/kldzj/env",
"author": {
"name": "Nikolai Kolodziej",
"email": "npm@kldzj.dev",
"url": "https://github.com/kldzj"
},
"license": "MIT",
"scripts": {
"test": "jest",
"build": "tsc",
"prebuild": "rimraf dist",
"prepublishOnly": "yarn build && yarn test"
},
"devDependencies": {
"@types/jest": "^29.2.0",
"@types/node": "^18.11.7",
"jest": "^29.2.2",
"rimraf": "^3.0.2",
"ts-jest": "^29.0.3",
"tsafe": "^1.2.1",
"typescript": "^4.8.4"
}
}