forked from keithmorris/node-dotenv-extended
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
61 lines (61 loc) · 1.66 KB
/
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "@ladjs/dotenv-extended",
"version": "3.0.0",
"description": "A module for loading .env files and optionally loading defaults and a schema for validating all values are present.",
"repository": "[email protected]:ladjs/dotenv-extended.git",
"main": "lib/index.js",
"types": "dotenv-extended.d.ts",
"bin": "lib/bin/index.js",
"scripts": {
"test": "gulp unittest",
"coveralls": "cat ./coverage/lcov.info | coveralls",
"lint": "gulp lint",
"prepublish": "gulp build"
},
"keywords": [
"dotenv",
"environment"
],
"author": "Keith Morris <[email protected]> (http://standupbass.wordpress.com/)",
"license": "MIT",
"devDependencies": {
"babel-eslint": "^8.0.3",
"babel-plugin-transform-object-rest-spread": "^6.8.0",
"babel-preset-es2015": "^6.5.0",
"chai": "^4.1.2",
"coveralls": "^3.0.0",
"del": "^3.0.0",
"eslint": "^4.13.1",
"eslint-config-standard": "^11.0.0-beta.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-node": "^5.2.1",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^3.0.1",
"gulp": "^3.9.1",
"gulp-babel": "^7.0.0",
"gulp-eslint": "^4.0.0",
"gulp-istanbul": "^1.1.1",
"gulp-mocha": "^4.3.1",
"mockery": "^2.0.0",
"run-sequence": "^2.2.0",
"sinon": "^4.1.3",
"sinon-chai": "^2.8.0"
},
"babel": {
"presets": [
"es2015"
],
"plugins": [
"transform-object-rest-spread"
]
},
"dependencies": {
"@types/dotenv": "^4.0.0",
"auto-parse": "^1.3.0",
"camelcase": "^4.1.0",
"cross-spawn": "^5.1.0",
"dotenv": "^4.0.0",
"is-windows": "^1.0.0",
"lodash": "^4.3.0"
}
}