forked from peterver/vanilla-image-cropper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.36 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
{
"name": "vanilla-image-cropper",
"version": "1.4.0",
"description": "A lightweight javascript imagecropper",
"main": "imagecrop.js",
"author": {
"name": "Peter Vermeulen",
"email": "nmb.peterv@gmail.com",
"url": "https://github.com/skedify"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/skedify/web-app-dependency-vanilla-image-cropper.git"
},
"bugs": {
"url": "https://github.com/skedify/web-app-dependency-vanilla-image-cropper/issues"
},
"keywords": [
"imagecropper",
"js",
"html5",
"lightweight"
],
"files": [
"dist/",
"docs/"
],
"scripts": {
"start": "gulp serve",
"test": "cross-env NODE_ENV=test jest",
"tdd": "npm run test -- --watch",
"check-coverage": "cross-env CI=true NODE_ENV=test jest --coverage"
},
"devDependencies": {
"babel-preset-env": "^1.7.0",
"browser-sync": "^2.18.8",
"cross-env": "^5.2.0",
"gulp": "^3.9.1",
"gulp-autoprefixer": "^3.1.1",
"gulp-rename": "^1.2.2",
"gulp-rollup": "^2.11.0",
"gulp-sass": "^3.1.0",
"gulp-sass-lint": "^1.3.2",
"jest": "^23.6.0",
"rollup-plugin-buble": "^0.15.0",
"rollup-plugin-commonjs": "^5.0.5",
"rollup-plugin-eslint": "^3.0.0",
"rollup-plugin-node-resolve": "^2.1.1",
"rollup-plugin-uglify": "^1.0.2",
"run-sequence": "^1.2.2"
}
}