-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 760 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 760 Bytes
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
{
"name": "dotenv-parents",
"version": "1.0.0",
"description": "Load .env from the current directory or its parents",
"keywords": [
"dotenv"
],
"main": "dist/src/index.js",
"types": "types/src/index.d.ts",
"scripts": {
"build": "tsc",
"test": "npm run build && node dist/test/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/itslukej/dotenv-parents.git"
},
"author": "Luke James <me@lukej.me>",
"license": "MIT",
"bugs": {
"url": "https://github.com/itslukej/dotenv-parents/issues"
},
"homepage": "https://github.com/itslukej/dotenv-parents#readme",
"devDependencies": {
"@types/node": "^12.12.31",
"typescript": "^3.8.3"
},
"dependencies": {
"dotenv": "^8.2.0"
}
}