This repository has been archived by the owner on Dec 20, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 29
/
package.json
60 lines (60 loc) · 1.51 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
{
"name": "react-multi-crops",
"version": "0.0.10",
"main": "lib/index.js",
"license": "MIT",
"author": {
"name": "Victor Wang",
"email": "TheHappiestMan@qq.com"
},
"repository": {
"type": "git",
"url": "https://github.com/beizhedenglong/react-multi-crops.git"
},
"scripts": {
"start": "parcel ./examples/index.html -p 3000",
"demo": "parcel build ./examples/index.html -d docs --public-url ./",
"lint": "eslint ./src/**/**.js",
"build": "rimraf lib && babel src --out-dir lib",
"publish": "npm run build && npm publish"
},
"pre-commit": [
"lint"
],
"keywords": [
"react-crop",
"img-crop",
"cropping",
"react-img-crop",
"react-multi-crops",
"react"
],
"devDependencies": {
"babel-eslint": "^8.2.2",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"eslint": "^4.9.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-react": "^7.4.0",
"parcel-bundler": "^1.6.2",
"pre-commit": "^1.2.2",
"react": "^16.6.3",
"react-dom": "^16.6.3",
"rimraf": "^2.6.2"
},
"peerDependencies": {
"react": "^16.2.0",
"react-dom": "^16.2.0"
},
"dependencies": {
"interactjs": "^1.4.0-alpha.1",
"prop-types": "^15.6.1",
"ramda": "^0.25.0",
"shortid": "^2.2.8",
"styled-jsx": "^2.2.6"
}
}