forked from mosch/react-avatar-editor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
97 lines (97 loc) · 2.53 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
{
"name": "react-avatar-editor",
"version": "11.0.2",
"description": "Avatar / profile picture component. Resize and crop your uploaded image using a intuitive user interface.",
"main": "dist/index.js",
"scripts": {
"clean": "rimraf dist",
"build": "rollup -c",
"watch": "rollup -c -w",
"lint": "eslint --cache --ext .js,.jsx src",
"test": "NODE_ENV=test jest",
"test:watch": "NODE_ENV=test jest --watch",
"demo:build": "NODE_ENV=production webpack",
"demo:watch": "webpack-dev-server",
"prepublish": "yarn run lint && yarn run test && yarn run clean && yarn run build",
"postversion": "git push --tags origin HEAD"
},
"author": {
"name": "Moritz Schwoerer",
"email": "[email protected]"
},
"contributors": [
{
"name": "Daniel Lehr",
"email": "[email protected]"
}
],
"repository": {
"type": "git",
"url": "git://github.com/mosch/react-avatar-editor.git"
},
"license": "MIT",
"keywords": [
"react-component",
"reactjs",
"react",
"canvas",
"avatar",
"editor",
"profile",
"image"
],
"dependencies": {
"prop-types": "^15.5.8"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-eslint": "7.2.2",
"babel-jest": "22.4.1",
"babel-loader": "^6.4.1",
"babel-plugin-external-helpers": "6.22.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-preset-env": "1.6.1",
"babel-preset-react": "^6.24.1",
"eslint": "4.18.2",
"eslint-config-prettier": "^2.9.0",
"eslint-config-react-app": "^2.1.0",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-import": "^2.9.0",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-promise": "^3.7.0",
"eslint-plugin-react": "^7.7.0",
"eslint-plugin-standard": "^3.0.1",
"jest": "22.4.2",
"prettier": "1.11.1",
"prop-types": "^15.5.8",
"react": "^15.5.4",
"react-dom": "^15.5.4",
"react-dropzone": "^4.2.3",
"rimraf": "^2.6.1",
"rollup": "^0.45.2",
"rollup-plugin-babel": "^2.7.1",
"rollup-plugin-uglify": "3.0.0",
"rollup-watch": "^4.3.1",
"snazzy": "^7.0.0",
"webpack": "^2.3.3",
"webpack-dev-server": "^2.4.2"
},
"peerDependencies": {
"react": ">=0.14.0 <17.0.0",
"react-dom": ">=0.14.0 <17.0.0"
},
"files": [
"dist",
"src"
],
"prettier": {
"singleQuote": true,
"trailingComma": "es5",
"semi": false,
"useTabs": false
},
"eslintConfig": {
"extends": "react-app"
}
}