generated from lukeed/typescript-module
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 1.84 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 1.84 KB
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
{
"version": "0.2.0",
"name": "use-custom-env",
"umd:name": "use-env",
"repository": {
"type": "git",
"url": "git+https://github.com/MRDGH2821/use-custom-env.git"
},
"description": "Use any given env file in your Node.js project!",
"unpkg": "dist/index.min.js",
"module": "dist/index.mjs",
"main": "dist/index.js",
"types": "types/index.d.ts",
"license": "MIT",
"author": {
"name": "MRDGH2821",
"url": "https://bit.ly/mrdgh2821"
},
"files": [
"dist",
"types"
],
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.js"
},
"./package.json": "./package.json"
},
"engines": {
"node": ">=12"
},
"scripts": {
"build": "rollup -c",
"prepublishOnly": "npm run build",
"types": "tsc --noEmit",
"test": "uvu -r tsm test",
"mytests": "ts-node test/mytests.ts",
"pretty": "prettier --write .",
"postpretty": "npm run lint",
"lint": "eslint . --fix",
"megalint": "npx mega-linter-runner@latest --flavor javascript"
},
"keywords": [
"env",
"custom",
"dotenv",
"custom-env",
"use-env",
".env"
],
"devDependencies": {
"@rollup/plugin-node-resolve": "^15.0.1",
"@types/node": "^18.11.7",
"eslint-config-airbnb-typescript": "^17.0.0",
"prettier": "^2.7.1",
"prettier-config-mrdgh2821": "^3.0.0",
"prettier-plugin-organize-imports": "^3.1.1",
"rollup": "^2.79.1",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.34.1",
"tsm": "^2.2.2",
"typescript": "^4.8.4",
"uvu": "^0.5.6"
},
"bugs": {
"url": "https://github.com/MRDGH2821/use-custom-env/issues"
},
"homepage": "https://github.com/MRDGH2821/use-custom-env#readme",
"directories": {
"test": "test"
},
"dependencies": {
"dotenv": "^16.0.3",
"dotenv-expand": "^9.0.0"
}
}