forked from perarnborg/vuex-oidc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.47 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
{
"name": "vuex-oidc",
"description": "Vue.js implementation of oidc-client using vuex and vue-router",
"keywords": [
"vue",
"vuejs",
"oidc",
"oidc-client",
"open id",
"open id client",
"vue oidc",
"vue open id"
],
"version": "1.15.3",
"homepage": "https://github.com/perarnborg/vuex-oidc#readme",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/perarnborg/vuex-oidc.git"
},
"main": "dist/vuex-oidc.cjs.js",
"module": "dist/vuex-oidc.esm.js",
"peerDependencies": {
"vue": ">= 2.5.0",
"vuex": ">= 3.0.0",
"vue-router": ">= 3.0.0"
},
"dependencies": {
"oidc-client": "~1.6.1"
},
"devDependencies": {
"acorn": "^6.1.0",
"atob": "^2.1.2",
"babel-core": "^6.26.3",
"babel-preset-env": "^1.7.0",
"jsdom": "^13.2.0",
"mocha": "^5.1.1",
"node-storage-shim": "^2.0.0",
"nyc": "^13.2.0",
"rollup": "^0.58.0",
"rollup-plugin-babel": "^3.0.7",
"rollup-plugin-commonjs": "^9.1.0",
"rollup-plugin-node-resolve": "^3.0.0",
"sinon": "^7.2.3"
},
"scripts": {
"build": "rollup -c",
"dev": "rollup -c -w",
"install:linter": "npm i && npm i rollup-plugin-eslint && npm i eslint-plugin-node && npm i eslint-plugin-import && npm i eslint-plugin-promise && npm i eslint-plugin-standard && npm i eslint-config-standard",
"test": "nyc mocha",
"pretest": "npm run build",
"preversion": "npm test"
},
"files": [
"dist"
]
}