-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 870 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
{
"name": "dotenv-process",
"version": "0.0.1",
"description": "Process env variables before initialization",
"main": "lib/main.js",
"directories": {
"lib": "lib",
"test": "test"
},
"scripts": {
"test": "mocha -r mocha.conf.js test/{unit,integration}/*.spec.js",
"posttest": "npm run lint",
"lint": "standard"
},
"repository": {
"type": "git",
"url": "git+https://github.com/codev0/dotenv-process.git"
},
"keywords": [
"dotenv",
"process",
"variables"
],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/codev0/dotenv-process/issues"
},
"homepage": "https://github.com/codev0/dotenv-process#readme",
"dependencies": {
"dotenv": "^8.1.0"
},
"devDependencies": {
"chai": "^4.2.0",
"mocha": "^6.2.1",
"sinon": "^7.5.0",
"sinon-chai": "^3.3.0"
}
}