forked from ahultgren/node-varium
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 826 Bytes
/
package.json
File metadata and controls
44 lines (44 loc) · 826 Bytes
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": "varium",
"version": "2.0.6",
"description": "Declare and validate environment variables",
"engines": {
"node": ">=6.5"
},
"type": "module",
"main": "./src/index.mjs",
"exports": {
"import": "./src/index.mjs",
"require": "./src/index.cjs"
},
"scripts": {
"test": "eslint --fix . && mocha \"src/**/*.test.js\""
},
"keywords": [
"env",
"environment",
"manifest",
"config",
"settings",
"var",
"variable"
],
"author": "Andreas Hultgren",
"license": "ISC",
"dependencies": {
"js-yaml": "^3.14.1",
"ramda": "^0.26.1"
},
"peerDependencies": {
"debug": "^4.x"
},
"devDependencies": {
"chai": "^3.5.0",
"eslint": "^8.0.0",
"mocha": "^10.8.2"
},
"files": [
"/src"
],
"repository": "ahultgren/node-varium"
}