-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
36 lines (36 loc) · 968 Bytes
/
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
{
"name": "croppable",
"version": "0.2.1",
"description": "Easily crop images in Ruby on Rails with Cropper.js integration",
"main": "app/assets/javascripts/croppable.js",
"module": "app/assets/javascripts/croppable.esm.js",
"files": [
"app/assets/javascripts/croppable.*",
"dist/croppable.css"
],
"repository": {
"type": "git",
"url": "stevenbarragan/croppable"
},
"keywords": [
"cropperjs",
"rails"
],
"dependencies": {
"cropperjs": "^2.0.0-beta.2"
},
"author": "Steven Barragán",
"license": "MIT",
"bugs": {
"url": "https://github.com/stevenbarragan/croppable/issues"
},
"homepage": "https://github.com/stevenbarragan/croppable#readme",
"scripts": {
"build": "rollup --config rollup.config.mjs && cp app/assets/stylesheets/croppable.css dist"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^11.0.1",
"@rollup/plugin-commonjs": "^19.0.1",
"rollup": "^2.35.1"
}
}