-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.06 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
{
"name": "bauhaus-cropper",
"version": "0.0.6",
"description": "Simple image cropping module.",
"main": "index.js",
"files": ["lib/", "icons.js"],
"scripts": {
"babel": "babel -d lib src",
"webpack": "webpack",
"build": "npm run babel && npm run webpack",
"test": "echo \"Error: no test specified\" && exit 1"
},
"babel": {
"presets": [
"react",
"es2015",
"stage-0"
],
"plugins": [
"add-module-exports",
"transform-react-display-name",
"transform-decorators-legacy"
]
},
"keywords": [
"cropping",
"cropper",
"bauhaus",
"image",
"upload"
],
"author": "Dustin Hoffner",
"license": "SEE LICENSE IN LICENSE",
"dependencies": {
"pica": "^2.0.0"
},
"devDependencies": {
"babel-cli": "^6.6.5",
"babel-plugin-add-module-exports": "^0.1.2",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-react-display-name": "^6.5.0",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"babel-preset-react-hmre": "^1.1.1",
"babel-preset-stage-0": "^6.5.0",
"webpack": "^1.12.14"
}
}