-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 755 Bytes
/
Copy pathpackage.json
File metadata and controls
33 lines (33 loc) · 755 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
{
"name": "miljo",
"version": "1.0.0",
"description": "A simple package to retrieve environment variables",
"main": "./index.js",
"types": "./index.d.ts",
"scripts": {
"build": "./node_modules/.bin/tsc",
"prepublish": "./node_modules/.bin/tsc",
"test": "./node_modules/.bin/ts-mocha -- -p tsconfig.json src/**/*.spec.ts"
},
"keywords": [
"Config",
"Env",
"Env var",
"Environment variables",
"JavaScript",
"Node.js",
"TypeScript"
],
"author": "Jonas Anker Jahr",
"license": "ISC",
"dependencies": {
"dotenv": "^8.0.0"
},
"devDependencies": {
"@types/mocha": "^5.2.7",
"@types/node": "^12.6.8",
"mocha": "^6.2.0",
"ts-mocha": "^6.0.0",
"typescript": "^3.5.3"
}
}