-
Notifications
You must be signed in to change notification settings - Fork 218
/
package.json
81 lines (81 loc) · 2.83 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
{
"name": "cloudinary-react",
"version": "1.8.1",
"description": "This is a legacy package, please find latest at https://www.npmjs.com/package/@cloudinary/react",
"main": "./dist/cloudinary-react.js",
"umd:main": "./dist/cloudinary-react.umd.js",
"module": "dist/cloudinary-react.esm.js",
"source": "src/index.js",
"engines": {
"node": ">=10"
},
"scripts": {
"test": "run-s build test:lint test:unit test:build test:e2e",
"test:unit": "jest",
"test:build": "TEST_ENV=PRODUCTION npm run test:unit",
"test:e2e": "cd ./e2e-test && npm run test",
"test:coverage": "jest --coverage",
"test:lint": "eslint src --ext js,jsx",
"pretest:e2e": "npm pack && cp cloudinary-react-*.tgz e2e-test/cloudinary-react.tgz",
"build": "microbundle --no-compress --sourcemap false --jsx React.createElement --format esm,umd,cjs && npm run bundlewatch",
"start": "microbundle watch --no-compress --sourcemap false --jsx React.createElement --format esm,umd,cjs",
"bundlewatch": "bundlewatch --config ./bundlewatch.config.js",
"storybook": "start-storybook -p 6006",
"build-storybook": "rm -rf docs && build-storybook -c .storybook -o docs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cloudinary/cloudinary-react.git"
},
"author": "Cloudinary",
"license": "MIT",
"bugs": {
"url": "https://github.com/cloudinary/cloudinary-react/issues"
},
"homepage": "https://github.com/cloudinary/cloudinary-react#readme",
"devDependencies": {
"@babel/cli": "^7.17.6",
"@babel/core": "^7.17.8",
"@babel/eslint-parser": "^7.13.4",
"@babel/plugin-proposal-class-properties": "^7.16.7",
"@babel/plugin-proposal-export-default-from": "^7.16.7",
"@babel/preset-env": "^7.16.11",
"@babel/preset-react": "^7.16.7",
"@babel/register": "^7.17.7",
"@storybook/addon-essentials": "^6.1.20",
"@storybook/react": "^6.1.20",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.2.4",
"bundlewatch": "^0.3.3",
"enzyme": "^3.10.0",
"enzyme-adapter-react-16": "^1.15.6",
"eslint": "^7.20.0",
"eslint-config-standard": "^14.1.0",
"eslint-config-standard-react": "^9.2.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-promise": "^4.3.1",
"eslint-plugin-react": "^7.17.0",
"eslint-plugin-standard": "^4.0.1",
"jest": "^26.6.3",
"jest-environment-enzyme": "^7.1.2",
"jest-enzyme": "^7.1.2",
"jest-extended": "^0.11.5",
"jsdom": "^20.0.0",
"microbundle": "^0.13.3",
"npm-run-all": "^4.1.5",
"react": "^16.14.0",
"react-dom": "^16.14.0"
},
"dependencies": {
"cloudinary-core": "^2.13.0",
"prop-types": "^15.8.1"
},
"peerDependencies": {
"react": "^16.3.3 || ^17.0.0 || ^18.0.0"
},
"files": [
"dist"
]
}