-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
46 lines (46 loc) · 1.07 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
{
"name": "@nuxtjs/separate-env",
"version": "0.0.1",
"description": "Separated environment variables for server and client builds",
"keywords": [
"nuxtjs",
"nuxt",
"env",
"environment",
"separate",
"variables"
],
"license": "MIT",
"contributors": [
"Alexander Lichter <[email protected]>"
],
"main": "lib/module.js",
"repository": "nuxt-community/separate-env-module",
"publishConfig": {
"access": "public"
},
"scripts": {
"dev": "nuxt test/fixture/ssr",
"lint": "eslint --ext .js,.vue lib test",
"test": "yarn lint && jest",
"release": "yarn test && standard-version && git push --follow-tags && npm publish"
},
"files": [
"lib"
],
"dependencies": {
"consola": "^2.15.0"
},
"devDependencies": {
"@commitlint/cli": "latest",
"@commitlint/config-conventional": "latest",
"@nuxtjs/eslint-config": "latest",
"codecov": "latest",
"eslint": "latest",
"get-port": "latest",
"husky": "latest",
"jest": "latest",
"nuxt-edge": "latest",
"standard-version": "latest"
}
}