forked from sottar/react-image-resizer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.72 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
{
"name": "react-image-resizer",
"description": "react image resizer",
"version": "1.3.0",
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/sottar/react-image-resizer.git"
},
"author": "sota ohara <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/sottar/react-image-resizer/issues"
},
"homepage": "https://github.com/sottar/react-image-resizer",
"keywords": [
"react-component",
"react",
"image-resize",
"resize",
"image"
],
"files": [
"README.md",
"lib",
"src"
],
"peerDependencies": {
"react": "^0.14.0 || ^15.0.0 || ^16.0.0"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-eslint": "^7.2.3",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-preset-env": "^1.6.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-flow": "^6.23.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-3": "^6.24.1",
"babel-register": "^6.24.1",
"chai": "^3.5.0",
"enzyme": "^3.2.0",
"enzyme-adapter-react-16": "^1.1.0",
"eslint": "^3.19.0",
"eslint-plugin-flowtype": "^2.42.0",
"eslint-plugin-react": "^6.10.3",
"flow-bin": "^0.65.0",
"flow-typed": "^2.3.0",
"jsdom": "^6.0.0",
"mocha": "^5.2.0",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"react-test-renderer": "^16.0.0"
},
"scripts": {
"build": "babel src --out-dir lib --source-maps",
"lint": "eslint --max-warnings 0 --ignore-path .eslintignore .",
"mocha": "mocha --require test/.setup.js --compilers js:babel-register",
"test": "yarn lint && yarn mocha",
"prepublish": "yarn build"
},
"jest": {
"testEnvironment": "node"
}
}