-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 1.64 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
{
"name": "atenv",
"version": "1.0.8",
"main": "dist/index.js",
"license": "MIT",
"dependencies": {
"class-transformer": "^0.5.1",
"class-validator": "^0.13.2",
"dotenv": "^16.0.0",
"reflect-metadata": "^0.1.13"
},
"devDependencies": {
"@swc/core": "^1.2.173",
"@swc/jest": "^0.2.20",
"@types/jest": "^27.4.1",
"@typescript-eslint/eslint-plugin": "^5.21.0",
"@typescript-eslint/parser": "^5.21.0",
"eslint": "^8.14.0",
"jest": "^28.0.3",
"prettier": "^2.6.2",
"rimraf": "^3.0.2",
"typescript": "^4.6.4"
},
"scripts": {
"build": "rimraf dist && tsc -p tsconfig.build.json",
"ci": "yarn --frozen-lockfile",
"test": "jest",
"lint": "eslint ./src",
"lint:fix": "eslint ./src --fix",
"format": "prettier --write ./src",
"prettier:check": "prettier --check ./src"
},
"author": {
"name": "Shahriar Shojib",
"email": "[email protected]",
"url": "https://github.com/shahriar-shojib/"
},
"keywords": [
"env",
"dotenv",
"class",
"validator",
"transformer",
"reflect",
"metadata"
],
"files": [
"dist"
],
"types": "./dist/index.d.ts",
"description": "A modern dotenv replacement for Typescript projects",
"repository": {
"type": "git",
"url": "https://github.com/shahriar-shojib/atenv.git"
},
"bugs": {
"url": "https://github.com/shahriar-shojib/atenv/issues"
},
"homepage": "https://github.com/shahriar-shojib/atenv",
"jest": {
"moduleFileExtensions": [
"ts",
"js"
],
"rootDir": "src",
"testRegex": ".spec.ts$",
"transform": {
"^.+\\.(t|j)s$": "@swc/jest"
},
"testEnvironment": "node"
}
}