forked from digitalsadhu/env-reader
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 846 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
{
"name": "env-reader",
"version": "0.1.2",
"description": "Streaming environment variable reader",
"main": "index.js",
"scripts": {
"test": "node_modules/.bin/mocha --reporter spec test",
"jshint": "node_modules/.bin/jshint ."
},
"repository": {
"type": "git",
"url": "git://github.com/digitalsadhu/env-reader.git"
},
"keywords": [
"env",
"stream",
"streaming",
"reader",
".env",
"ENV",
"process",
"process.env"
],
"author": "Richard Walker <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/digitalsadhu/env-reader/issues"
},
"homepage": "https://github.com/digitalsadhu/env-reader",
"devDependencies": {
"chai": "~1.9.1",
"mocha": "~1.18.2",
"jshint": "~2.5.0"
},
"dependencies": {
"through": "~2.3.4"
}
}