-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 1.97 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "nuxt-envalid",
"version": "0.0.6",
"description": "A Nuxt.js module thats validates your env variables and loads them cleaned into your application context",
"keywords": [
"nuxt-module",
"javascript",
"envalid"
],
"bugs": {
"url": "https://github.com/manuelhenke/nuxt-envalid/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/manuelhenke/nuxt-envalid.git"
},
"homepage": "https://nuxt-envalid.henkebyte.com",
"license": "MIT",
"author": {
"name": "Manuel Henke",
"email": "contact@henkebyte.com",
"url": "https://henkebyte.com"
},
"main": "./dist/module.js",
"types": "./dist/module.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "siroc build",
"dev": "nuxt dev test/fixture/basic",
"lint": "yarn lint:js && yarn lint:prettier",
"lint:js": "eslint --ext \".js,.ts\" .",
"lint:prettier": "prettier --check .",
"lintfix": "yarn lint:js --fix && prettier --write --list-different .",
"prepare": "husky install",
"prepublishOnly": "yarn build",
"test": "jest --coverage",
"serve-docs": "cd docs/ && bundle exec jekyll serve"
},
"dependencies": {
"envalid": "^7.3.1"
},
"devDependencies": {
"@babel/core": "^7.20.12",
"@babel/plugin-transform-runtime": "^7.19.6",
"@babel/preset-env": "^7.20.2",
"@babel/preset-typescript": "^7.18.6",
"@commitlint/cli": "^17.4.2",
"@commitlint/config-conventional": "^17.4.2",
"@nuxt/test-utils": "^0.2.2",
"@nuxt/types": "^2.15.8",
"@nuxtjs/eslint-config-typescript": "^12.0.0",
"@types/jest": "^29.4.0",
"@types/node": "^18.11.18",
"eslint": "^8.33.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-sonarjs": "^0.18.0",
"husky": "^8.0.3",
"jest": "^26.0.20s",
"nuxt": "^2.15.8",
"prettier": "^2.8.3",
"siroc": "^0.16.0",
"typescript": "^5.0.4"
},
"publishConfig": {
"access": "public"
}
}