-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
47 lines (47 loc) · 1.18 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
{
"name": "vue-auth-image",
"version": "0.0.2",
"description": "Vue directive to load and display secured images",
"author": "Jean Lalande <[email protected]>",
"license": "MIT",
"main": "vue-auth-image.js",
"scripts": {
"build": "webpack example/example.js example/example.build.js && uglifyjs vue-auth-image.js -c -m > vue-auth-image.min.js",
"dev": "webpack --watch example/example.js example/example.build.js",
"lint": "eslint vue-auth-image.js example/example.js"
},
"repository": {
"type": "git",
"url": "https://gitlab.com/jlalande/vue-auth-image.git"
},
"homepage": "https://gitlab.com/jlalande/vue-auth-image",
"bugs": {
"url": "https://gitlab.com/jlalande/vue-auth-image/issues"
},
"peerDependencies": {
"vue": "^2.0.0",
"axios": ">= 0.5.0 < 1"
},
"devDependencies": {
"axios": "^0.5.0",
"babel-eslint": "~7.2.3",
"eslint": "~4.1.0",
"uglify-js": "^3.0.19",
"vue": "^2.3.4",
"webpack": "^3.0.0"
},
"keywords": [
"vue",
"vue-auth-image",
"directive",
"authentication",
"authorization",
"token",
"headers",
"image",
"src",
"data-uri",
"data",
"uri"
]
}