-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.19 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
{
"name": "imagecrop",
"version": "1.0.4",
"description": "An image cropping plugin",
"main": "dist/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"prebuild": "rimraf -rf dist",
"build": "npm-run-all --parallel build:*",
"build:main": "babel --out-dir dist src",
"build:umd": "webpack --output-filename index.umd.js",
"build:umd.min": "webpack --output-filename index.umd.min.js -p"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bpsagar/imagecrop.git"
},
"keywords": [
"image",
"crop"
],
"author": "Sagar Chakravarthy",
"license": "MIT",
"bugs": {
"url": "https://github.com/bpsagar/imagecrop/issues"
},
"homepage": "https://github.com/bpsagar/imagecrop#readme",
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-loader": "^6.2.10",
"babel-plugin-transform-object-rest-spread": "^6.20.2",
"babel-preset-es2015": "^6.18.0",
"css-loader": "^0.26.1",
"node-sass": "^4.3.0",
"npm-run-all": "^4.0.0",
"rimraf": "^2.5.4",
"sass-loader": "^4.1.1",
"style-loader": "^0.13.1",
"webpack": "^1.14.0"
},
"dependencies": {
"jquery": "^3.1.1"
}
}