forked from fengyuanchen/cropperjs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
92 lines (92 loc) · 2.67 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "cropperjs",
"description": "JavaScript image cropper.",
"version": "1.4.1",
"main": "dist/cropper.common.js",
"module": "dist/cropper.esm.js",
"unpkg": "dist/cropper.js",
"types": "types/index.d.ts",
"style": "dist/cropper.css",
"repository": "fengyuanchen/cropperjs",
"homepage": "https://fengyuanchen.github.io/cropperjs",
"license": "MIT",
"author": {
"name": "Chen Fengyuan",
"url": "https://chenfengyuan.com"
},
"files": [
"src",
"dist",
"types"
],
"keywords": [
"image",
"crop",
"move",
"zoom",
"rotate",
"scale",
"cropper",
"cropper.js",
"cropping",
"processing",
"html",
"css",
"javascript",
"front-end",
"web"
],
"scripts": {
"build": "npm run build:css && npm run build:js",
"build:css": "postcss src/index.css -o dist/cropper.css --no-map",
"build:js": "rollup -c",
"clear": "del-cli dist",
"commitmsg": "npm run lint && commitlint -e",
"compress": "npm run compress:css && npm run compress:js",
"compress:css": "postcss dist/cropper.css -u cssnano -o dist/cropper.min.css --no-map",
"compress:js": "uglifyjs dist/cropper.js -o dist/cropper.min.js -c -m --comments /^!/",
"copy": "cpy dist/cropper.css docs/css",
"lint": "eslint src test *.js --fix",
"release": "npm run clear && npm run lint && npm run build && npm run compress && npm run copy && npm test",
"start": "npm-run-all --parallel watch:*",
"test": "karma start test/karma.conf.js",
"watch:css": "postcss src/index.css -o docs/css/cropper.css -m -w",
"watch:js": "rollup -c -m -w"
},
"devDependencies": {
"@commitlint/cli": "^7.0.0",
"@commitlint/config-conventional": "^7.0.1",
"babel-core": "^6.26.3",
"babel-plugin-external-helpers": "^6.22.0",
"babel-preset-env": "^1.7.0",
"chai": "^4.1.2",
"change-case": "^3.0.2",
"cpy-cli": "^2.0.0",
"create-banner": "^1.0.0",
"cssnano": "^4.0.2",
"del-cli": "^1.1.0",
"eslint": "^5.1.0",
"eslint-config-airbnb-base": "^13.0.0",
"eslint-plugin-import": "^2.13.0",
"husky": "^0.14.3",
"karma": "^2.0.4",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^2.2.0",
"karma-mocha": "^1.3.0",
"karma-mocha-reporter": "^2.2.5",
"karma-rollup-preprocessor": "^6.0.0",
"mocha": "^5.2.0",
"npm-run-all": "^4.1.3",
"postcss-cli": "^5.0.1",
"postcss-header": "^1.0.0",
"postcss-import": "^11.1.0",
"postcss-preset-env": "^5.2.2",
"postcss-url": "^7.3.2",
"puppeteer": "^1.6.0",
"rollup": "^0.62.0",
"rollup-plugin-babel": "^3.0.7",
"rollup-watch": "^4.3.1",
"stylefmt": "^6.0.0",
"uglify-js": "^3.4.4"
}
}