-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
55 lines (55 loc) · 1.11 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
{
"name": "env-kit",
"description": "Env Kit for Node Development",
"keywords": [
"env",
"dotenv",
"envkit"
],
"author": "Vien Dinh",
"version": "2.0.4",
"license": "MIT",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"test": "tsdx test",
"build": "npx rimraf dist && tsc",
"prepare": "npm run build",
"lint": "tsdx lint"
},
"dependencies": {
"dotenv": "^10.0.0",
"lodash.pick": "^4.4.0",
"tslib": "^2.3.0"
},
"peerDependencies": {},
"devDependencies": {
"@types/jest": "^25.1.1",
"@types/lodash.pick": "^4.4.6",
"husky": "^4.2.1",
"tsdx": "^0.12.3",
"typescript": "^4.3.5"
},
"husky": {
"hooks": {
"pre-commit": "tsdx lint"
}
},
"prettier": {
"printWidth": 120,
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Maxvien/env-kit.git"
},
"bugs": {
"url": "https://github.com/Maxvien/env-kit/issues"
},
"homepage": "https://github.com/Maxvien/env-kit#readme"
}