-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
102 lines (102 loc) · 3.06 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
{
"name": "@strattadb/environment",
"version": "8.0.2",
"description": "Environment variable configuration for Node.js made easy.",
"main": "dist/index.js",
"homepage": "https://github.com/dbstratta/environment",
"repository": {
"type": "git",
"url": "https://github.com/dbstratta/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.2",
"validator": "^13.6.0"
},
"devDependencies": {
"@babel/cli": "7.14.5",
"@babel/core": "7.14.6",
"@babel/preset-env": "7.14.7",
"@babel/preset-typescript": "7.14.5",
"@commitlint/cli": "12.1.4",
"@commitlint/config-conventional": "12.1.4",
"@commitlint/prompt-cli": "12.1.3",
"@semantic-release/changelog": "5.0.1",
"@semantic-release/git": "9.0.0",
"@types/debug": "4.1.6",
"@types/jest": "26.0.24",
"@types/node": "16.3.3",
"@types/validator": "13.6.3",
"@typescript-eslint/eslint-plugin": "4.28.3",
"@typescript-eslint/parser": "4.28.3",
"babel-jest": "27.0.6",
"codecov": "3.8.2",
"cross-env": "7.0.3",
"danger": "10.6.6",
"eslint": "7.31.0",
"eslint-config-airbnb-base": "14.2.1",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-eslint-comments": "3.2.0",
"eslint-plugin-import": "2.23.4",
"eslint-plugin-jest": "24.3.6",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-prettier": "3.4.0",
"eslint-plugin-promise": "5.1.0",
"eslint-plugin-security": "1.4.0",
"eslint-plugin-unicorn": "34.0.1",
"husky": "7.0.1",
"jest": "27.0.6",
"lint-staged": "11.0.1",
"prettier": "2.3.2",
"rimraf": "3.0.2",
"semantic-release": "17.4.4",
"typescript": "4.3.5"
},
"keywords": [
"environment",
"variables",
"env",
"var",
"config",
"required",
"validate",
"configuration",
"process.env",
"process",
"configuration"
],
"author": {
"name": "Diego Stratta",
"email": "dbstratta@gmail.com",
"url": "https://diegostratta.com"
},
"bugs": {
"url": "https://github.com/dbstratta/environment/issues",
"email": "dbstratta@gmail.com"
},
"license": "MIT",
"engines": {
"node": ">= 12"
}
}