forked from af/envalid
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.21 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
{
"name": "envalid",
"version": "7.3.0-beta.2",
"description": "Validation for your environment variables",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"sideEffects": false,
"engines": {
"node": ">=8.12"
},
"engineStrict": true,
"files": [
"dist",
"src"
],
"scripts": {
"start": "tsc --watch",
"prepare": "tsc",
"coverage": "jest --coverage",
"lint": "tsc && prettier -list-different --write src tests",
"test": "jest"
},
"repository": {
"type": "git",
"url": "https://github.com/af/envalid"
},
"keywords": [
".env",
"dotenv",
"env",
"env var",
"environment",
"environment variable",
"validation"
],
"dependencies": {
"tslib": "2.3.1"
},
"devDependencies": {
"@types/jest": "27.4.0",
"@types/node": "17.0.15",
"husky": "7.0.4",
"jest": "27.5.0",
"prettier": "2.5.1",
"ts-jest": "27.1.3",
"typescript": "4.6.0-beta"
},
"author": "Aaron Franks",
"license": "MIT",
"prettier": {
"printWidth": 100,
"semi": false,
"singleQuote": true,
"trailingComma": "all"
},
"husky": {
"hooks": {
"pre-commit": "yarn lint",
"pre-push": "yarn test"
}
}
}