-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
47 lines (47 loc) · 1.37 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
{
"name": "idcrop",
"version": "2.1.3",
"description": "Image cropper utility that crops an image in any polygonal shape chosen and returns a base64 of the cropped area.",
"main": "index.js",
"files": [
"lib",
"dist"
],
"scripts": {
"build": "webpack --config ./webpack-prod.config.js --progress -p -d",
"watch": "webpack --progress --watch -d",
"start": "webpack-dev-server --open -d",
"lint": "./node_modules/.bin/eslint ./lib/js/*.js && ./node_modules/.bin/eslint ./lib/js/idcrop/*.js",
"fix": "./node_modules/.bin/eslint ./lib/js/*.js --fix && ./node_modules/.bin/eslint ./lib/js/idcrop/*.js --fix",
"version": "npm run build",
"postversion": "npm publish"
},
"repository": {
"type": "git",
"url": "https://github.com/idwall/idcrop.git"
},
"keywords": [
"idwall",
"crop",
"image",
"upload"
],
"author": "Beatriz Rizental",
"license": "MIT",
"devDependencies": {
"babel-core": "^6.26.2",
"babel-loader": "^7.1.4",
"babel-preset-env": "^1.6.1",
"css-loader": "^0.28.11",
"eslint": "^4.19.1",
"eslint-plugin-json": "^1.2.0",
"eslint-plugin-prettier": "^2.6.0",
"extract-text-webpack-plugin": "^3.0.2",
"node-sass": "^4.9.0",
"prettier": "^1.12.1",
"sass-loader": "^6.0.7",
"style-loader": "^0.19.0",
"webpack": "^3.11.0",
"webpack-dev-server": "^2.11.2"
}
}