forked from dbstratta/environment
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
108 lines (108 loc) · 3.16 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "@sadams/environment",
"version": "9.0.0",
"description": "Environment variable configuration for Node.js made easy.",
"main": "dist/index.js",
"homepage": "https://github.com/sam-super/environment",
"repository": {
"type": "git",
"url": "https://github.com/sam-super/environment.git"
},
"scripts": {
"build": "yarn build-lib && yarn build-types",
"build-lib": "cross-env NODE_ENV=production babel --source-maps --extensions \".ts\" --out-dir dist src",
"build-types": "tsc --emitDeclarationOnly",
"prebuild": "yarn clean-dist",
"clean-dist": "rimraf dist",
"tsc": "tsc --noEmit",
"lint": "yarn lint:check",
"lint:check": "eslint \"src/**/*.{js,ts}\"",
"lint:fix": "eslint --fix \"src/**/*.{js,ts}\"",
"test": "cross-env NODE_ENV=test jest",
"test:watch": "yarn test --onlyChanged --watch",
"test:ci": "yarn test --verbose --ci --coverage",
"test:coverage": "yarn test --coverage",
"test:debug": "cross-env NODE_ENV=test node --inspect-brk=0.0.0.0:9229 --nolazy node_modules/.bin/jest --runInBand",
"upload-coverage": "codecov",
"prepare": "husky install",
"commit": "commit",
"semantic-release": "semantic-release"
},
"types": "dist/index.d.ts",
"private": false,
"dependencies": {
"debug": "^4.3.4",
"validator": "^13.7.0"
},
"devDependencies": {
"@babel/cli": "7.19.3",
"@babel/core": "7.20.2",
"@babel/preset-env": "7.20.2",
"@babel/preset-typescript": "7.18.6",
"@commitlint/cli": "17.2.0",
"@commitlint/config-conventional": "17.2.0",
"@commitlint/prompt-cli": "17.2.0",
"@semantic-release/changelog": "6.0.1",
"@semantic-release/git": "10.0.1",
"@types/debug": "4.1.7",
"@types/jest": "29.2.3",
"@types/node": "18.11.9",
"@types/validator": "13.7.10",
"@typescript-eslint/eslint-plugin": "5.43.0",
"@typescript-eslint/parser": "5.43.0",
"babel-jest": "29.3.1",
"codecov": "3.8.2",
"cross-env": "7.0.3",
"danger": "11.2.0",
"eslint": "8.27.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-eslint-comments": "3.2.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-jest": "27.1.5",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-promise": "6.1.1",
"eslint-plugin-security": "1.5.0",
"eslint-plugin-unicorn": "44.0.2",
"husky": "8.0.2",
"jest": "29.3.1",
"lint-staged": "13.0.3",
"prettier": "2.7.1",
"rimraf": "3.0.2",
"semantic-release": "19.0.5",
"typescript": "4.8.4"
},
"keywords": [
"environment",
"variables",
"env",
"var",
"config",
"required",
"validate",
"configuration",
"process.env",
"process",
"configuration"
],
"author": {
"name": "Sam Adams",
"email": "adams.sam@gmail.com"
},
"contributors": [
{
"name": "Diego Stratta",
"email": "dbstratta@gmail.com",
"url": "https://diegostratta.com"
}
],
"bugs": {
"url": "https://github.com/sam-super/environment/issues",
"email": "adams.sam@gmail.com"
},
"license": "MIT",
"engines": {
"node": ">= 12"
}
}