-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 984 Bytes
/
package.json
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": "env-create",
"version": "1.1.4",
"description": "Read in a .env.json file that contains valid JSON and assign top level properties to environment variables",
"repository": {
"type": "git",
"url": "https://github.com/Rolias/env-create.git"
},
"main": "lib/main.js",
"scripts": {
"start": "node lib/main.js",
"test": "nyc --reporter=text mocha --use_strict \"lib/**/*.test.js\" ",
"lint": "eslint lib --color",
"build": "npm test && git add -A && npm version patch && npm publish "
},
"author": "Tod Gentille",
"license": "MIT",
"keywords": [
"dotenv",
"env",
".env",
".env.json",
"environment",
"variables",
"json",
"jason",
"load",
"create",
"config",
"auth",
"secrets",
"load"
],
"devDependencies": {
"chai": "^4.3.4",
"eslint": "^7.27.0",
"mocha": "^9.2.1",
"nyc": "^15.1.0",
"sinon": "^11.1.1"
},
"engines": {
"node": ">=6"
}
}