forked from jonom/jquery-focuspoint
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
50 lines (50 loc) · 1.57 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
{
"name": "mth-focuspoint",
"version": "0.0.1",
"description": "Javascript plugin for 'responsive cropping'. Dynamically crop images to fill available space without cutting out the image's subject. Great for full-screen images.",
"main": "mth-focuspoint.cjs.js",
"module": "mth-focuspoint.esm.js",
"browser": "mth-focuspoint.umd.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"copy": "node tools/copy-package.js && node tools/cleanup.js",
"bundle": "rimraf dist && rollup -c rollup.config.umd.js && rollup -c rollup.config.esm.js && rollup -c rollup.config.cjs.js",
"postbundle": "node tools/removecode.js",
"build": "npm run bundle && npm run copy",
"watch": "onchange \"src/**\" -- npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MarcusTHellams/mth-focuspoint"
},
"keywords": [
"crop",
"cropping",
"image",
"responsive",
"fill",
"background",
"full-screen",
"focus",
"focuspoint"
],
"author": {
"name": "Marcus T. Hellams"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/MarcusTHellams/mth-focuspoint/issues"
},
"homepage": "https://github.com/MarcusTHellams/mth-focuspoint#readme",
"devDependencies": {
"babel-core": "^6.26.3",
"babel-plugin-external-helpers": "^6.22.0",
"babel-preset-env": "^1.7.0",
"del": "^3.0.0",
"onchange": "^4.0.0",
"rollup-plugin-babel": "^3.0.4",
"rollup-plugin-commonjs": "^9.1.3",
"rollup-plugin-copy": "^0.2.3",
"rollup-plugin-node-resolve": "^3.3.0"
}
}