-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
73 lines (73 loc) · 2.02 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
{
"name": "browser-image-manipulation",
"version": "0.4.0",
"description": "Convert and manipulate image on JS in browser.",
"main": "dist/browser-image-manipulation.js",
"typings": "types/index.d.ts",
"files": [
"dist/",
"src/",
"types/",
"index.js",
"README.md"
],
"repository": {
"type": "git",
"url": "git+https://github.com/grinat/browser-image-manipulation.git"
},
"scripts": {
"build": "rollup -c",
"dev": "rollup -c -w",
"prepublish": "npm run build",
"test": "cross-env NODE_ENV=test babel-node spec/run.js"
},
"keywords": [
"image",
"crop",
"resize",
"circle"
],
"author": "Gabdrashitov Rinat <paladin2012gnu@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/grinat/browser-image-manipulation/issues"
},
"homepage": "https://github.com/grinat/browser-image-manipulation#readme",
"dependencies": {
"blueimp-canvas-to-blob": "^3.14.0",
"pica": "^9.0.1",
"piexifjs": "^1.0.6",
"stackblur-canvas": "~2.2.0"
},
"devDependencies": {
"@babel/core": "^7.3.4",
"@babel/node": "^7.7.0",
"@babel/plugin-transform-async-to-generator": "^7.7.0",
"@babel/plugin-transform-runtime": "^7.0.0",
"@babel/preset-env": "^7.3.4",
"@babel/runtime": "^7.7.2",
"@types/jasmine": "^3.3.5",
"babel-eslint": "^10.0.3",
"canvas": "^2.9.1",
"cross-env": "^5.2.0",
"eslint": "^8.13.0",
"eslint-config-standard": "^6.2.1",
"eslint-plugin-html": "^3.2.2",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-promise": "^3.4.0",
"eslint-plugin-standard": "^2.0.1",
"file-api": "^0.10.4",
"filereader": "^0.10.3",
"jasmine": "^3.3.1",
"jasmine-console-reporter": "^3.1.0",
"jsdom": "^13.1.0",
"mime": "~1.4.0",
"pixelmatch": "^4.0.2",
"rollup": "^1.26.3",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-buble": "^0.19.2",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-terser": "^5.1.2"
}
}