-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.33 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
{
"name": "vuex-jwt",
"version": "1.0.4",
"description": "Axios inteceptor to handle jwt refresh",
"main": "dist/vuex-jwt.js",
"module": "dist/vuex-jwt.es.js",
"types": "types/vuex-jwt.d.ts",
"repository": "https://github.com/zengoma/vuex-jwt",
"author": "Lance Moore <[email protected]>",
"license": "MIT",
"prepare": "yarn build",
"private": false,
"files": [
"dist",
"types"
],
"scripts": {
"lint": "eslint src/**/*.ts",
"typescript": "tsc --noEmit",
"test": "jest --config jestconfig.json",
"build": "rollup -c",
"watch": "rollup -cw"
},
"dependencies": {
"axios": "^0.19.1",
"jwt-decode": "^2.2.0"
},
"devDependencies": {
"@types/jest": "^24.0.25",
"@types/jwt-decode": "^2.2.1",
"@types/node": "^13.13.4",
"@types/vue": "^2.0.0",
"@typescript-eslint/eslint-plugin": "^2.15.0",
"@typescript-eslint/parser": "^2.15.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.9.0",
"eslint-plugin-prettier": "^3.1.2",
"jest": "^24.9.0",
"prettier": "^1.19.1",
"rollup": "^1.29.0",
"rollup-plugin-terser": "^5.1.3",
"rollup-plugin-typescript2": "^0.25.3",
"ts-jest": "^24.3.0",
"typescript": "^3.7.4",
"vue": "^2.6.11",
"vuex": "^3.1.2"
},
"peerDependencies": {
"vue": "^2.0.0",
"vuex": "^2.0.0 || ^3.0.0"
}
}