-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.35 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.35 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
{
"name": "dotenv-init",
"version": "1.1.0",
"description": "Creates an .env file by parsing a project's source code.",
"main": "init.js",
"preferGlobal": true,
"bin": "./bin/dotenv-init.js",
"homepage": "https://github.com/meanjoe45/dotenv-init",
"repository": {
"type": "git",
"url": "git@github.com:meanjoe45/dotenv-init.git"
},
"bugs": {
"url": "https://github.com/meanjoe45/dotenv-init/issues"
},
"scripts": {
"pretest": "npm run lint",
"test": "lab test/* -r lcov | coveralls",
"test:local": "lab test/* -c",
"lint": "standard",
"postlint": "npm run lint:md",
"lint:md": "standard-markdown"
},
"dependencies": {
"commander": "^2.11.0",
"decomment": "^0.9.1",
"globs": "^0.1.3"
},
"devDependencies": {
"coveralls": "^3.0.0",
"lab": "^14.3.1",
"should": "^13.1.3",
"should-sinon": "^0.0.6",
"sinon": "^4.1.2",
"standard": "^10.0.3",
"standard-markdown": "^4.0.2"
},
"peerDependencies": {},
"directories": {},
"keywords": [
"dotenv",
"init",
"initialize",
"env",
".env",
"environment",
"variables",
"config",
"settings"
],
"engines": {
"node": ">=4.0.0"
},
"author": {
"name": "Joe",
"email": "meanjoe45.acct@gmail.com",
"url": "https://meanjoe45.github.io/"
},
"contributors": [],
"license": "MIT"
}