forked from react-cropper/react-cropper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
100 lines (100 loc) · 3.14 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
{
"name": "react-cropper",
"version": "2.2.0-0",
"description": "Cropper as React Component",
"main": "dist/react-cropper.umd.js",
"module": "dist/react-cropper.es.js",
"typings": "types/index.d.ts",
"scripts": {
"test": "jest --coverage --forceExit",
"lint": "eslint --ext .js,.jsx,.ts,.tsx ./src ./example",
"build": "yarn clean && rollup -c rollup.config.ts",
"build:dev": "rollup -c rollup.config.dev.ts -w",
"clean": "rimraf dist",
"prepublishOnly": "yarn build",
"commit": "git-cz",
"release": "np",
"start": "npm-run-all --parallel build:dev browse",
"browse": "browser-sync start --s --ss build --index example/index.html --files example/**/*.html,example/assets/**/*.js,example/assets/**/*.css --no-notify"
},
"author": "Fong Kuanghuei <[email protected]>",
"maintainers": [
"Shubhendu Shekhar <[email protected]>"
],
"homepage": "https://github.com/react-cropper/react-cropper/",
"bugs": {
"url": "https://github.com/react-cropper/react-cropper/issues"
},
"keywords": [
"react",
"react-component",
"cropper",
"image",
"cropperjs"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/react-cropper/react-cropper.git"
},
"dependencies": {
"cropperjs": "^1.5.12"
},
"peerDependencies": {
"react": ">=17.0.2"
},
"devDependencies": {
"@babel/cli": "^7.15.7",
"@babel/core": "^7.15.8",
"@babel/plugin-proposal-object-rest-spread": "^7.15.6",
"@babel/plugin-transform-object-assign": "^7.14.5",
"@babel/plugin-transform-runtime": "^7.15.8",
"@babel/preset-env": "^7.15.8",
"@babel/runtime": "^7.15.4",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-commonjs": "^21.0.0",
"@rollup/plugin-node-resolve": "^13.0.5",
"@rollup/plugin-replace": "^3.0.0",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^12.1.2",
"@types/jest": "^27.0.2",
"@types/react": "^17.0.30",
"@types/react-dom": "^17.0.9",
"@types/react-test-renderer": "^17.0.1",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"babel-jest": "^27.2.5",
"babel-preset-react-app": "^10.0.0",
"browser-sync": "^2.27.5",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.0.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.26.1",
"eslint-plugin-react-hooks": "^4.2.0",
"jest": "^27.2.5",
"jest-environment-jsdom": "^27.2.5",
"np": "^7.5.0",
"npm-run-all": "^4.1.5",
"postcss": "^8.3.9",
"prettier": "2.4.1",
"react": "^17.0.1",
"react-app-polyfill": "^2.0.0",
"react-dom": "^17.0.2",
"react-test-renderer": "^17.0.2",
"rimraf": "^3.0.2",
"rollup": "^2.58.0",
"rollup-plugin-node-globals": "^1.4.0",
"rollup-plugin-postcss": "^4.0.1",
"rollup-plugin-typescript2": "^0.30.0",
"tslib": "^2.3.1",
"typescript": "^4.4.4"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}