-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
95 lines (95 loc) · 2.43 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
{
"name": "universal-dotenv",
"version": "4.1.0",
"description": "Robust Environment Configuration for Universal Applications.",
"main": "lib/index.cjs.js",
"module": "lib/index.esm.js",
"types": "lib/index.d.ts",
"bin": {
"unienv": "bin/unienv"
},
"scripts": {
"format": "effective-prettier '**/*.{ts,tsx,js,jsx,md}'",
"test": "jest",
"lint": "npm run lint:code && npm run lint:types",
"lint:code": "eslint '**/*.{ts,tsx,js,jsx}'",
"lint:types": "tsc --noEmit",
"pretest": "npm run prepare",
"prepare": "rimraf lib && preppy",
"release": "git push && release-it --ci patch",
"release:minor": "git push && release-it --ci minor",
"release:major": "git push && release-it --ci major"
},
"engines": {
"node": ">=14.0.0"
},
"keywords": [
"dotenv",
"universal",
"env"
],
"files": [
"lib/",
"bin/",
"register.js"
],
"license": "Apache-2.0",
"author": {
"name": "Sebastian Software",
"email": "[email protected]",
"url": "https://www.sebastian-software.de"
},
"bugs": {
"url": "https://github.com/sebastian-software/universal-dotenv/issues"
},
"homepage": "https://github.com/sebastian-software/universal-dotenv#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/sebastian-software/universal-dotenv.git"
},
"pre-commit": "lint-staged",
"lint-staged": {
"*.js": "eslint"
},
"jest": {
"testEnvironment": "node",
"snapshotFormat": {
"escapeString": true
}
},
"devDependencies": {
"@babel/core": "^7.20.5",
"@babel/plugin-transform-runtime": "^7.19.6",
"@babel/preset-env": "^7.20.2",
"@babel/preset-typescript": "^7.18.6",
"@effective/eslint-config": "^4.0.2",
"@effective/prettier": "^4.3.4",
"@types/app-root-dir": "^0.1.1",
"@types/jest": "^29.2.3",
"@types/yargs": "^17.0.15",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^29.3.1",
"eslint": "^8.28.0",
"husky": "^8.0.2",
"jest": "^29.3.1",
"lint-staged": "^13.0.4",
"preppy": "^11.1.0",
"prettier": "^2.8.0",
"release-it": "^15.5.0",
"rimraf": "^3.0.2",
"typescript": "^4.9.3"
},
"dependencies": {
"@babel/runtime": "^7.20.6",
"app-root-dir": "^1.0.2",
"core-js": "^3.26.1",
"cross-env": "^7.0.3",
"dotenv": "^16.0.3",
"yargs": "^17.6.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}