-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
102 lines (102 loc) · 2.82 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "cloudinary-vue",
"version": "1.2.4",
"scripts": {
"serve": "INTERNAL_DEPS=1 vue-cli-service serve ./playground/main.js",
"build": "vue-cli-service lint --fix && npm run build:lib",
"test": "vue-cli-service test:unit",
"tdd": "yarn run test --watch --coverage=false",
"bundlewatch": "bundlewatch --config ./bundlewatch.config.js",
"lint": "vue-cli-service lint",
"build:lib": "vue-cli-service build --target lib --name Cloudinary src/index.js && npm run bundlewatch",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook -o docs-build -s ./src/stories/assets"
},
"main": "dist/Cloudinary.umd.js",
"unpkg": "dist/Cloudinary.umd.min.js",
"dependencies": {
"cloudinary-core": "^2.10.3"
},
"peerDependencies": {
"vue": "^2.0.0"
},
"devDependencies": {
"@babel/core": "^7.15.5",
"@babel/plugin-proposal-optional-chaining": "^7.14.5",
"@babel/plugin-transform-runtime": "^7.15.0",
"@storybook/addon-actions": "^6.3.8",
"@storybook/addon-essentials": "^6.3.8",
"@storybook/addon-knobs": "^5.0.0",
"@storybook/addon-links": "^6.3.8",
"@storybook/addon-notes": "^5.0.0",
"@storybook/vue": "^6.3.8",
"@types/jest": "^26.0.24",
"@vue/cli-plugin-babel": "^4.5.9",
"@vue/cli-plugin-eslint": "^4.5.9",
"@vue/cli-plugin-unit-jest": "^4.5.9",
"@vue/cli-service": "^4.5.9",
"@vue/eslint-config-prettier": "^4.0.1",
"@vue/test-utils": "^1.2.2",
"babel-eslint": "^10.0.1",
"babel-jest": "^23.6.0",
"bundlewatch": "^0.2.6",
"core-js": "3.12.1",
"eslint": "^5.15.1",
"eslint-plugin-vue": "^5.2.2",
"glob": "^7.1.3",
"husky": "^1.3.1",
"jest-html-reporters": "^1.2.1",
"jstoxml": "^1.4.4",
"vue": "2.6.10",
"vue-loader": "^15.9.8",
"vue-server-renderer": "2.6.10",
"vue-styleguidist": "^4.41.1",
"vue-template-compiler": "2.6.10",
"webpack-node-externals": "^1.7.2"
},
"husky": {
"hooks": {
"pre-commit": "npm test"
}
},
"license": "MIT",
"repository": {
"github": "https://github.com/cloudinary/cloudinary-vue"
},
"overrides": {
"vue-styleguidist": {
"react-styleguidist": {
"react-dev-utils": {
"immer": "9.0.6"
}
}
},
"@vue/cli-plugin-babel": {
"@vue/cli-shared-utils": {
"request": {
"http-signature": {
"jsprim": {
"json-schema": "0.4.0"
}
}
}
}
},
"@vue/cli-service": {
"webpack-dev-server": {
"@vue/cli-service": {
"sockjs-client": {
"eventsource": {
"original": {
"url-parse": "1.5.9"
}
}
},
"webpack-bundle-analyzer": {
"ejs": "3.1.6"
}
}
}
}
}
}