-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
120 lines (120 loc) · 3.62 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
{
"name": "@d0whc3r/vue-auth-plugin",
"version": "1.9.2",
"author": {
"email": "[email protected]",
"name": "d0whc3r",
"url": "https://github.com/d0whc3r"
},
"repository": {
"type": "git",
"url": "https://github.com/d0whc3r/vue-auth-plugin.git"
},
"homepage": "https://d0whc3r.github.io/vue-auth-plugin",
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"lint": "vue-cli-service lint",
"coverage:codacy": "cat ./coverage/lcov.info | codacy-coverage -p . --language typescript",
"coverage:codecovs": "codecov -f coverage/*.json -t ${CODECOVS_TOKEN}",
"coverage:coveralls": "cat ./coverage/lcov.info | coveralls",
"docs": "yarn docs:serve",
"docs:build": "cross-env NODE_ENV=production vue-cli-service docs --mode build",
"docs:deploy": "cross-env BASE_DOCS=/vue-auth-plugin/ yarn docs:build && gh-pages -d docs/.vuepress/dist",
"docs:serve": "vue-cli-service docs --mode serve",
"test": "vue-cli-service test:unit",
"test:coverage": "yarn test --coverage",
"test:send-coverages": "yarn coverage:codecovs && yarn coverage:coveralls && yarn coverage:codacy",
"commit": "git-cz",
"semantic-release": "semantic-release",
"postversion2": "git commit -am 'chore(bump): bump version [skip-ci]' && git push --follow-tags"
},
"main": "dist/vue-auth-plugin.common.js",
"module": "dist/vue-auth-plugin.esm.js",
"unpkg": "dist/vue-auth-plugin.umd.min.js",
"files": [
"dist/vue-auth-plugin.common.js",
"dist/vue-auth-plugin.umd.min.js",
"dist/vue-auth-plugin.umd.js",
"dist/vue-auth-plugin.esm.js",
"src",
"types"
],
"dependencies": {
"vue-router": "3.5.2"
},
"devDependencies": {
"@octokit/core": "3.5.1",
"@octokit/plugin-paginate-rest": "2.15.1",
"@semantic-release/changelog": "5.0.1",
"@semantic-release/commit-analyzer": "8.0.1",
"@semantic-release/git": "9.0.0",
"@semantic-release/github": "7.2.3",
"@semantic-release/npm": "7.1.3",
"@semantic-release/release-notes-generator": "9.0.3",
"@types/jest": "27.0.1",
"@vue/cli-plugin-babel": "4.5.13",
"@vue/cli-plugin-typescript": "4.5.13",
"@vue/cli-plugin-unit-jest": "4.5.13",
"@vue/cli-plugin-vuex": "4.5.13",
"@vue/cli-service": "4.5.13",
"@vue/test-utils": "1.2.2",
"axios": "0.21.1",
"axios-mock-adapter": "1.20.0",
"babel-core": "7.0.0-bridge.0",
"codacy-coverage": "3.4.0",
"codecov": "3.8.3",
"commitizen": "4.2.4",
"coveralls": "3.1.1",
"cross-env": "7.0.3",
"gh-pages": "3.2.3",
"jest": "26.6.3",
"jest-junit": "12.2.0",
"jest-sonar-reporter": "2.0.0",
"js-cookie": "3.0.0",
"semantic-release": "17.4.5",
"sonar-scanner": "3.1.0",
"ts-jest": "26.5.6",
"ts-node": "10.2.0",
"typescript": "4.3.5",
"vue": "2.6.14",
"vue-axios": "3.2.5",
"vue-cli-plugin-p11n": "0.4.0",
"vue-server-renderer": "2.6.14",
"vue-template-compiler": "2.6.14",
"vuex": "3.6.2"
},
"jest-junit": {
"outputDirectory": "./coverage",
"outputName": "./junit.xml"
},
"jestSonar": {
"reportPath": "coverage",
"reportFile": "test-report.xml"
},
"jsdelivr": "dist/vue-auth-plugin.umd.min.js",
"keywords": [
"vue",
"plugin",
"auth",
"authorization",
"authentication",
"login",
"roles",
"vuejs",
"vue2",
"typescript"
],
"license": "MIT",
"sideeffects": false,
"types": "types/index.d.ts",
"publishConfig": {
"registry": "https://registry.npmjs.org",
"access": "public"
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
}
}