-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.05 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.05 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
{
"name": "read-env-file",
"version": "2.0.3-0",
"homepage": "https://github.com/csmith14/read-env-file",
"bugs": "https://github.com/csmith14/read-env-file/issues",
"description": "Utilities for reading environment variable names & values from files in \".env\" format",
"keywords": [
"env",
"dotenv",
".env",
"env-var"
],
"repository": "csmith14/read-env-file",
"license": "MIT",
"author": "Cam Smith @csmith14",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib"
],
"scripts": {
"test": "ava",
"lint": "eslint --fix ./src --ext .ts --config .eslintrc",
"posttest": "yarn lint",
"prepublish": "tsc"
},
"dependencies": {},
"devDependencies": {
"@camsmith145/eslint-config-typescript": "^1.3.2",
"@types/chai": "^4",
"@types/mocha": "^5",
"@types/node": "^10",
"ava": "^3.5.0",
"chai": "^4",
"eslint": "^5.13",
"fancy-test": "^1.4.7",
"mocha": "^5",
"ts-node": "^8.8.1",
"typescript": "^3.3"
},
"engines": {
"node": ">=8.0.0"
}
}