-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.78 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.78 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
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
{
"name": "@sottar/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 <ohrst.18@gmail.com>",
"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.26.0",
"babel-eslint": "10.1.0",
"babel-plugin-transform-class-properties": "6.24.1",
"babel-preset-env": "1.7.0",
"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.26.0",
"chai": "4.2.0",
"enzyme": "3.11.0",
"enzyme-adapter-react-16": "1.15.2",
"eslint": "7.3.1",
"eslint-plugin-flowtype": "4.7.0",
"eslint-plugin-react": "7.20.0",
"flow-bin": "0.127.0",
"flow-typed": "3.1.0",
"jsdom": "16.2.2",
"mocha": "7.2.0",
"react": "16.13.1",
"react-dom": "16.13.1",
"react-test-renderer": "16.13.1"
},
"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"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
}
}