-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.24 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.24 KB
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
{
"name": "image-analyzer",
"version": "0.1.0-beta.2",
"main": "./lib/index.js",
"license": "MIT",
"description": "🖼️Simple Javascript library for analyzing images.",
"author": "VamOSGS (Gegham Samvelyan)",
"scripts": {
"dev": "parcel ./testServer/index.html",
"build": "babel src --out-dir ./lib --plugins=babel-plugin-transform-es2015-modules-simple-commonjs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/VamOSGS/image-analyzer.git"
},
"keywords": [
"image-analyzer",
"image-colors",
"image main colors",
"get average colors"
],
"bugs": {
"url": "https://github.com/VamOSGS/image-analyzer/issues"
},
"homepage": "https://vamosgs.github.io/image-analyzer/",
"dependencies": {},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.2.2",
"@babel/plugin-transform-modules-umd": "^7.2.0",
"@babel/preset-env": "^7.2.3",
"babel-eslint": "^10.0.1",
"babel-plugin-transform-es2015-modules-simple-commonjs": "^0.3.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"eslint": "^5.12.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.14.0",
"parcel-bundler": "^1.11.0"
}
}