forked from fengyuanchen/cropper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 1.99 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
61
62
63
64
65
66
67
68
69
70
71
{
"name": "cropper",
"description": "A simple jQuery image cropping plugin.",
"version": "3.0.0-rc.2",
"main": "dist/cropper.common.js",
"module": "dist/cropper.esm.js",
"browser": "dist/cropper.js",
"license": "MIT",
"repository": "fengyuanchen/cropper",
"homepage": "https://fengyuanchen.github.io/cropper",
"author": {
"name": "Fengyuan Chen",
"url": "http://chenfengyuan.com"
},
"keywords": [
"image",
"crop",
"cropper",
"cropping",
"move",
"zoom",
"rotate",
"scale",
"jquery",
"plugin",
"jqueryplugin",
"html",
"css",
"javascript",
"front-end",
"web",
"development"
],
"scripts": {
"build:css": "postcss -c postcss.config.json",
"build:js": "rollup -c",
"build": "npm run build:css && npm run build:js",
"compress:css": "postcss -u cssnano dist/cropper.css -o dist/cropper.min.css",
"compress:js": "uglifyjs dist/cropper.js -o dist/cropper.min.js -c -m --comments /^!/",
"compress": "npm run compress:css && npm run compress:js",
"watch:css": "postcss -c postcss.config.json -w",
"watch:js": "rollup -c -w -m",
"lint": "eslint src/js",
"postbuild": "npm run compress && node build",
"prebuild": "npm run lint && npm test",
"start": "npm-run-all --parallel watch:*",
"test": "node-qunit-phantomjs test/index.html"
},
"dependencies": {
"jquery": ">= 1.9.1"
},
"devDependencies": {
"babel-plugin-external-helpers": "^6.22.0",
"babel-preset-es2015": "^6.22.0",
"cssnano": "^3.10.0",
"eslint": "^3.14.0",
"eslint-config-airbnb-base": "^10.0.1",
"eslint-plugin-import": "^2.2.0",
"node-qunit-phantomjs": "^1.5.0",
"npm-run-all": "^3.1.2",
"postcss-assets": "^4.1.0",
"postcss-cli": "^2.6.0",
"postcss-cssnext": "^2.9.0",
"rollup": "^0.36.4",
"rollup-plugin-babel": "^2.7.1",
"rollup-plugin-commonjs": "^5.0.5",
"rollup-plugin-node-resolve": "^2.0.0",
"rollup-watch": "^2.5.0",
"uglify-js": "^2.7.5"
}
}