-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathpackage.json
66 lines (66 loc) · 1.89 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
{
"name": "tinycrop",
"version": "1.8.0",
"description": "Lightweight pure JavaScript image crop",
"main": "lib/index.js",
"scripts": {
"start": "cross-env BABEL_ENV=cjs NODE_ENV=production webpack --watch src/index.js dist/tinycrop.min.js",
"test": "standard",
"lint": "standard",
"fix": "standard --fix",
"build": "yarn cjs && yarn umd && yarn min && yarn react",
"cjs": "cross-env BABEL_ENV=cjs babel src --out-dir lib",
"umd": "cross-env BABEL_ENV=cjs NODE_ENV=development webpack src/index.js dist/tinycrop.js",
"min": "cross-env BABEL_ENV=cjs NODE_ENV=production webpack src/index.js dist/tinycrop.min.js",
"react": "webpack --config react-example/webpack.config.js react-example/index.jsx react-example/bundle.js"
},
"standard": {
"ignore": [
"/dist/",
"/lib/"
]
},
"repository": {
"type": "git",
"url": "https://github.com/willbamford/tinycrop.git"
},
"keywords": [
"crop",
"resize",
"selection",
"image",
"thumbnail",
"react",
"lightweight",
"pure"
],
"author": "Will Bamford",
"license": "MIT",
"bugs": {
"url": "https://github.com/willbamford/tinycrop/issues"
},
"homepage": "https://github.com/willbamford/tinycrop",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.18.2",
"babel-loader": "^6.4.1",
"babel-plugin-transform-es2015-modules-commonjs": "^6.18.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-3": "^6.24.1",
"babel-register": "^6.18.0",
"eslint": "^3.10.2",
"eslint-config-standard-react": "^4.2.0",
"eslint-plugin-react": "^6.7.1",
"standard": "^8.5.0",
"webpack": "^1.15.0"
},
"dependencies": {
"cross-env": "^7.0.0",
"normalize.css": "^5.0.0",
"react": "^15.6.2",
"react-dom": "^15.6.2",
"tinytouch": "^1.5.1",
"yarn": "^1.22.0"
}
}