-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.27 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.27 KB
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
{
"name": "pargali",
"version": "1.0.8",
"description": "Enhanced environment variable loader for Node.js",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"keywords": [
"environment",
"variables",
"dotenv",
"nodejs"
],
"author": "Think Thread",
"license": "MIT",
"scripts": {
"build": "tsup",
"test": "jest",
"test:coverage": "jest --coverage"
},
"dependencies": {
"dotenv": "^16.3.1"
},
"devDependencies": {
"@types/jest": "^29.5.8",
"@types/node": "^20.9.0",
"jest": "^29.7.0",
"ts-jest": "^29.1.1",
"tsup": "^7.2.0",
"typescript": "^5.2.2"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ThinkThread/pargali.git"
},
"bugs": {
"url": "https://github.com/ThinkThread/pargali/issues"
},
"homepage": "https://github.com/ThinkThread/pargali#readme",
"contributors": [
{
"name": "Muhtalip Dede",
"github": "https://github.com/muhtalipdede",
"twitter": "https://twitter.com/MuhtalipDede"
},
{
"name": "Harun Sokullu",
"github": "https://github.com/suphero",
"twitter": "https://twitter.com/suphero"
}
]
}