-
Notifications
You must be signed in to change notification settings - Fork 30
/
package.json
40 lines (40 loc) · 1.05 KB
/
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
40
{
"name": "@nuxtjs/dotenv",
"version": "1.4.2",
"description": "A Nuxt.js module that loads your .env file into your context options",
"repository": "nuxt-community/dotenv-module",
"license": "MIT",
"contributors": [
"Julien Tant <[email protected]>"
],
"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": "^3.2.3",
"dotenv": "^8.2.0"
},
"devDependencies": {
"@commitlint/cli": "^18.4.2",
"@commitlint/config-conventional": "^18.4.2",
"@nuxtjs/eslint-config": "^12.0.0",
"@nuxtjs/module-test-utils": "^1.6.3",
"@types/jest": "^29.5.8",
"codecov": "^3.8.3",
"eslint": "^8.53.0",
"eslint-plugin-jest": "^27.6.0",
"husky": "^8.0.3",
"jest": "^29.7.0",
"nuxt-edge": "^2.17.2-28284499.5674f49",
"standard-version": "^9.5.0"
},
"publishConfig": {
"access": "public"
}
}