UNPKG

1.08 kBJSONView Raw
1{
2 "name": "dotenv",
3 "version": "8.2.0",
4 "description": "Loads environment variables from .env file",
5 "main": "lib/main.js",
6 "types": "types",
7 "scripts": {
8 "flow": "flow",
9 "dtslint": "dtslint types",
10 "lint": "standard",
11 "postlint": "standard-markdown",
12 "pretest": "npm run lint && npm run dtslint",
13 "test": "tap tests/*.js --100",
14 "prerelease": "npm test",
15 "release": "standard-version"
16 },
17 "repository": {
18 "type": "git",
19 "url": "git://github.com/motdotla/dotenv.git"
20 },
21 "keywords": [
22 "dotenv",
23 "env",
24 ".env",
25 "environment",
26 "variables",
27 "config",
28 "settings"
29 ],
30 "readmeFilename": "README.md",
31 "license": "BSD-2-Clause",
32 "devDependencies": {
33 "decache": "^4.5.1",
34 "dtslint": "^0.9.8",
35 "flow-bin": "^0.109.0",
36 "sinon": "^7.5.0",
37 "standard": "^13.1.0",
38 "standard-markdown": "^5.1.0",
39 "standard-version": "^7.0.0",
40 "tap": "^14.7.0"
41 },
42 "dependencies": {},
43 "engines": {
44 "node": ">=8"
45 },
46 "standard": {
47 "ignore": [
48 "flow-typed/"
49 ]
50 }
51}