forked from nuxt-community/dotenv-module
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.08 KB
/
Copy pathpackage.json
File metadata and controls
39 lines (39 loc) · 1.08 KB
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": "@wilonth/nuxt-dotenv",
"version": "1.6.1",
"description": "A Nuxt.js module that loads your .env file into your context options, supports merging multiple .env files (.env, .env.development, .env.development.local...)",
"repository": "chilons/dotenv-module",
"license": "MIT",
"contributors": [
"Julien Tant <julien@craftyx.fr>"
],
"files": [
"lib"
],
"main": "lib/module.js",
"scripts": {
"lint": "eslint --ext .js,.vue lib test",
"release": "yarn test && standard-version && git push --follow-tags && npm publish",
"test": "yarn lint && jest"
},
"dependencies": {
"consola": "^2.11.3",
"dotenv": "^8.2.0",
"dotenv-flow": "^3.2.0"
},
"devDependencies": {
"@commitlint/cli": "latest",
"@commitlint/config-conventional": "latest",
"@nuxtjs/eslint-config": "latest",
"@nuxtjs/module-test-utils": "latest",
"codecov": "latest",
"eslint": "latest",
"husky": "latest",
"jest": "latest",
"nuxt-edge": "latest",
"standard-version": "latest"
},
"publishConfig": {
"access": "public"
}
}