-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.31 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.31 KB
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": "@cloudinary/html",
"version": "1.13.3",
"description": "An HTML wrapper for Cloudinary",
"main": "./dist/index.js",
"umd": "./dist/index.umd.js",
"module": "./dist/index.esm.js",
"types": "./dist/index.d.ts",
"type": "module",
"files": [
"package.json",
"dist",
"*.md"
],
"sideEffects": false,
"repository": "https://github.com/cloudinary/frontend-frameworks",
"scripts": {
"build": "rollup -c",
"typecheck": "tsc --noEmit --skipLibCheck",
"test": "jest --config jest.config.json",
"test-coverage": "jest --coverage"
},
"devDependencies": {
"@babel/preset-env": "^7.14.7",
"@babel/preset-typescript": "^7.14.5",
"@cloudinary/url-gen": "^1.21.0",
"@rollup/plugin-commonjs": "^19.0.0",
"@rollup/plugin-node-resolve": "^13.0.0",
"@types/jest": "^29.4.0",
"core-js": "^3.23.5",
"jest": "^29.3.1",
"jest-environment-jsdom": "^29.3.1",
"rollup": "^2.52.2",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-typescript2": "^0.34.1",
"ts-jest": "^29.0.5",
"tslib": "^2.0.0"
},
"dependencies": {
"@types/lodash.clonedeep": "^4.5.6",
"@types/lodash.debounce": "^4.0.6",
"@types/node": "^14.14.10",
"lodash.clonedeep": "^4.5.0",
"lodash.debounce": "^4.0.8",
"typescript": "^4.1.2"
}
}