forked from cloudinary/cloudinary-react
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 2.12 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
{
"name": "cloudinary-react",
"version": "1.4.0",
"description": "Present Cloudinary images and videos using React components",
"main": "lib/index.js",
"scripts": {
"test": "node_modules/.bin/mocha --require @babel/register test/.setup.js --recursive test",
"test:all": "run-s compile dist test test-dist test-lib",
"test-dist": "TEST_SUBJECT=dist node_modules/.bin/mocha --require @babel/register test/.setup.js --recursive test",
"test-lib": "TEST_SUBJECT=lib node_modules/.bin/mocha --require @babel/register test/.setup.js --recursive test",
"compile": "node_modules/.bin/babel src --out-dir lib --copy-files ",
"dist": "node_modules/.bin/webpack && npm run build-storybook",
"storybook": "start-storybook -p 6006",
"build-storybook": "del-cli 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.2.0",
"@babel/core": "^7.2.2",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-proposal-export-default-from": "^7.2.0",
"@babel/preset-env": "^7.2.0",
"@babel/preset-react": "^7.0.0",
"@babel/register": "^7.0.0",
"@storybook/addon-actions": "^4.1.2",
"@storybook/addon-info": "^4.1.2",
"@storybook/addon-links": "^4.1.2",
"@storybook/react": "^4.1.2",
"babel-loader": "^8.0.4",
"babelify": "^10.0.0",
"browserify": "^16.2.3",
"browserify-shim": "^3.8.14",
"chai": "^4.1.2",
"chai-string": "^1.4.0",
"del-cli": "^3.0.0",
"enzyme": "^3.10.0",
"enzyme-adapter-react-16": "^1.14.0",
"jsdom": "^11.12.0",
"mocha": "^4.0.1",
"npm-run-all": "^4.1.5",
"react-dom": "^16.3.3",
"webpack": "4.27.1",
"webpack-cli": "^3.1.2"
},
"dependencies": {
"cloudinary-core": "^2.8.2",
"prop-types": "^15.6.2"
},
"peerDependencies": {
"react": "^16.3.3"
}
}