-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
62 lines (62 loc) · 1.62 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
{
"name": "vanilla-image-cropper",
"version": "1.4.0",
"description": "A lightweight javascript imagecropper",
"main": "imagecrop.js",
"author": {
"name": "Peter Vermeulen",
"email": "[email protected]",
"url": "https://github.com/peterver"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/peterver/vanilla-image-cropper.git"
},
"bugs": {
"url": "https://github.com/peterver/vanilla-image-cropper/issues"
},
"engines": {
"node": "^10.1.0",
"npm": "^6.2.0"
},
"keywords": [
"imagecropper",
"js",
"html5",
"lightweight"
],
"files": [
"dist/",
"docs/"
],
"scripts": {
"test": "karma start karma.conf.js",
"build": "gulp dist",
"start": "gulp serve"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-plugin-check-es2015-constants": "^6.8.0",
"babel-plugin-transform-member-expression-literals": "^6.8.0",
"babel-plugin-transform-minify-booleans": "^6.8.0",
"babel-plugin-transform-property-literals": "^6.8.0",
"babel-preset-es2015-rollup": "^3.0.0",
"browser-sync": "^2.17.3",
"gulp": "^4.0.0",
"gulp-autoprefixer": "^5.0.0",
"gulp-rename": "^1.2.2",
"gulp-rollup": "^2.5.1",
"gulp-sass": "^4.0.1",
"jasmine-core": "^3.1.0",
"karma": "^2.0.4",
"karma-jasmine": "^1.0.2",
"karma-phantomjs-launcher": "^1.0.2",
"phantomjs-prebuilt": "^2.1.13",
"rollup-plugin-babel": "^3.0.7",
"rollup-plugin-commonjs": "^8.3.0",
"rollup-plugin-eslint": "^5.0.0",
"rollup-plugin-node-resolve": "^3.3.0",
"rollup-plugin-uglify": "^4.0.0"
}
}