forked from nuxt-community/auth-module
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 2.03 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
71
72
73
74
75
76
77
78
{
"name": "@nuxtjs/auth",
"version": "4.8.4",
"description": "Authentication module for Nuxt.js",
"license": "MIT",
"contributors": [
{
"name": "Pooya Parsa <[email protected]>",
"url": "https://github.com/pi0"
},
{
"name": "Herberts Cruz <[email protected]>"
},
{
"name": "Tony Briet",
"url": "https://github.com/breakingrobot"
}
],
"main": "lib/module/index.js",
"repository": "nuxt-community/auth-module",
"publishConfig": {
"access": "public"
},
"scripts": {
"heroku-postbuild": "nuxt build examples/demo",
"start": "nuxt start examples/demo",
"dev": "nuxt examples/demo",
"lint": "eslint lib test",
"lint-fix": "eslint --fix lib test",
"test": "npm run lint && jest",
"release": "standard-version && git push --follow-tags && npm publish"
},
"eslintIgnore": [
"lib/module/plugin.js"
],
"files": [
"lib"
],
"jest": {
"testEnvironment": "node",
"collectCoverage": true
},
"dependencies": {
"@nuxtjs/axios": "^5.6.0",
"body-parser": "^1.19.0",
"consola": "^2.10.1",
"cookie": "^0.4.0",
"dotprop": "^1.2.0",
"is-https": "^1.0.0",
"js-cookie": "^2.2.1",
"lodash": "^4.17.15",
"nanoid": "^2.1.1"
},
"devDependencies": {
"@nuxtjs/toast": "^3.2.1",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-decorators-legacy": "^1.3.5",
"bootstrap-vue": "^2.0.1",
"codecov": "^3.5.0",
"cookie-parser": "^1.4.4",
"eslint": "^6.4.0",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jest": "^22.17.0",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"eslint-plugin-vue": "^5.2.3",
"express": "^4.17.1",
"express-jwt": "^5.3.1",
"jest": "^24.9.0",
"jsdom": "^15.1.1",
"nuxt-class-component": "^1.3.0",
"nuxt-edge": "^2.10.0-26144655.e9c4bcfe",
"puppeteer": "^1.20.0",
"standard-version": "^7.0.0"
}
}