-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathpackage.json
68 lines (68 loc) · 1.79 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
{
"name": "imagekitio-vue",
"version": "2.0.0",
"scripts": {
"build:lib": "./node_modules/.bin/vue-cli-service build --target lib src/index.js",
"build": "./node_modules/.bin/vue-cli-service lint --fix; npm run build:lib",
"serve": "./node_modules/.bin/vue-cli-service serve",
"lint": "./node_modules/.bin/vue-cli-service lint",
"test:e2e": "cypress open",
"start:test-app": "npx serve -s tests/test-app/dist -p 3000 & cd tests/test-app/server && node server"
},
"main": "dist/imagekitio-vue.common.js",
"unpkg": "dist/imagekitio-vue.umd.min.js",
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "https://github.com/imagekit-developer/imagekit-vuejs"
},
"dependencies": {
"babel-eslint": "^10.1.0",
"cypress-file-upload": "^5.0.8",
"imagekit-javascript": "^2.0.0"
},
"devDependencies": {
"@babel/core": "^7.12.16",
"@babel/eslint-parser": "^7.12.16",
"@vue/cli-plugin-babel": "~5.0.8",
"@vue/cli-plugin-eslint": "~5.0.8",
"@vue/cli-plugin-unit-jest": "^5.0.8",
"@vue/cli-service": "~5.0.8",
"babel-loader": "^8.0.6",
"babel-preset-vue": "^2.0.2",
"cypress": "^13.6.0",
"eslint": "^7.32.0",
"eslint-plugin-vue": "^8.0.3",
"html-webpack-plugin": "^5.5.3",
"vue-loader": "^15.8.3",
"vue-template-compiler": "^2.6.11",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4"
},
"peerDependencies": {
"vue": "^3.3.8"
},
"eslintConfig": {
"root": true,
"env": {
"node": true
},
"extends": [
"plugin:vue/vue3-essential",
"eslint:recommended"
],
"rules": {},
"parserOptions": {
"parser": "@babel/eslint-parser"
}
},
"license": "MIT",
"browserslist": [
"> 1%",
"last 2 versions",
"not dead",
"not ie 11"
]
}