-
-
Notifications
You must be signed in to change notification settings - Fork 380
/
package.json
39 lines (38 loc) · 1.37 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
{
"version": "4.2.1",
"name": "@websanova/vue-auth",
"description": "A simple light-weight authentication library for Vue.js",
"keywords": ["vue", "vue.js", "vuejs", "plugin", "jwt", "auth", "authentication", "authorize", "authenticate", "bearer", "basic", "axios", "http", "api", "json", "web", "token"],
"homepage": "https://websanova.com/docs/vue-auth",
"author": {
"name": "Websanova",
"url": "http://websanova.com",
"username": "websanova",
"email": "[email protected]"
},
"main": "dist/v3/vue-auth.common.js",
"module": "dist/v3/vue-auth.esm.js",
"unpkg": "dist/v3/vue-auth.min.js",
"jsdelivr": "dist/v3/vue-auth.min.js",
"types": "types/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/websanova/vue-auth"
},
"license": "(MIT OR GPL)",
"scripts": {
"clear": "rm -rf dist/*",
"build": "npm run clear; node build/build.js",
"test-ts": "./node_modules/typescript/bin/tsc ./build/ts-test.js --allowJS --outDir ./tmp"
},
"devDependencies": {
"typescript": "4.0.3",
"@babel/core": "^7.2.2",
"@babel/preset-env": "^7.2.0",
"babel-loader": "^8.0.4",
"uglify-js": "^3.4.9",
"rollup": "^0.66.0",
"rollup-plugin-babel": "^4.1.0",
"rollup-plugin-replace": "^2.1.0"
}
}