-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
59 lines (59 loc) · 1.49 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
{
"name": "env-smart",
"version": "2.3.1",
"description": "Zero-dependency library for loading .env files. Supports default values and type definitions.",
"keywords": [
".env",
"env",
"environment",
"environmental",
"variables",
"config",
"configuration",
"settings",
"dotenv"
],
"homepage": "https://github.com/jessety/env-smart#readme",
"bugs": {
"url": "https://github.com/jessety/env-smart/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jessety/env-smart.git"
},
"license": "MIT",
"author": "Jesse Youngblood <[email protected]> (https://jesseyoungblood.com)",
"type": "commonjs",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"directories": {
"lib": "lib",
"example": "examples",
"test": "tests"
},
"files": [
"/lib"
],
"scripts": {
"build": "npm run clean && tsc",
"clean": "rimraf lib",
"format": "sort-package-json && prettier --write '**/*.{ts,js,mjs,cjs,json,yml,md}' && eslint --fix .",
"lint": "eslint .",
"prepare": "husky install",
"test": "jest"
},
"devDependencies": {
"@jessety/eslint-config": "2.2.5",
"@jessety/prettier-config": "1.1.0",
"@types/jest": "^27.0.2",
"@types/node": "^16.11.6",
"eslint": "^7.8.1",
"husky": "^7.0.0",
"jest": "^27.3.1",
"lint-staged": "^11.2.6",
"prettier": "^3.1.1",
"sort-package-json": "^1.52.0",
"ts-jest": "^27.0.7",
"typescript": "^4.0.2"
}
}