forked from cloudinary/cloudinary-react
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.8 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
{
"name": "cloudinary-react",
"version": "1.0.6",
"description": "Present Cloudinary images and videos using React components",
"main": "lib/index.js",
"scripts": {
"test": "node_modules/.bin/mocha --require babel-core/register test/.setup.js --recursive test",
"compile": "node_modules/.bin/babel src -d lib && cd src && find . -name package.json -exec cp --parents '{}' ../lib \\; -print",
"dist": "node_modules/.bin/webpack",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"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": {
"@storybook/addon-actions": "^3.2.17",
"@storybook/addon-info": "^3.2.17",
"@storybook/addon-links": "^3.2.17",
"@storybook/react": "^3.2.17",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-1": "^6.24.1",
"babelify": "^8.0.0",
"browserify": "^14.5.0",
"browserify-shim": "^3.8.14",
"chai": "^4.1.2",
"chai-string": "^1.4.0",
"enzyme": "^3.2.0",
"enzyme-adapter-react-16": "^1.1.0",
"jsdom": "^11.5.1",
"mocha": "^4.0.1",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"webpack": "^3.9.1"
},
"dependencies": {
"cloudinary-core": "^2.3.0",
"prop-types": "^15.6.0"
},
"peerDependencies": {
"react": "^16.2.0"
},
"babel": {
"presets": [
"react",
"es2015",
"stage-1"
],
"ignore": [
"**/*compiled.js*"
]
}
}