forked from nuxt-community/auth-module
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 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
{
"name": "@nuxtjs/auth",
"version": "4.5.1",
"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": "https://github.com/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 src test",
"lint-fix": "eslint --fix lib src 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.3.1",
"boom": "^7.2.0",
"consola": "^1.3.0",
"cookie": "^0.3.1",
"dotprop": "^1.0.2",
"js-cookie": "^2.2.0",
"lodash": "^4.17.10"
},
"devDependencies": {
"@nuxtjs/toast": "^3.0.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"body-parser": "^1.18.3",
"bootstrap-vue": "^2.0.0-rc.11",
"codecov": "^3.0.2",
"cookie-parser": "^1.4.3",
"eslint": "^4.19.1",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-import": "^2.12.0",
"eslint-plugin-jest": "^21.15.0",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-promise": "^3.7.0",
"eslint-plugin-standard": "^3.1.0",
"eslint-plugin-vue": "^4.4.0",
"express": "^4.16.3",
"express-jwt": "^5.3.1",
"jest": "^22.4.4",
"jsdom": "^11.10.0",
"nuxt-class-component": "^1.2.0",
"nuxt-edge": "^2.0.0-25440915.dcc92c6",
"puppeteer": "^1.4.0",
"standard-version": "latest"
}
}