-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
64 lines (64 loc) · 1.74 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
{
"name": "react-img-zoom",
"main": "dist/index.js",
"version": "0.1.0",
"author": "Leonardo Felipe Nerone <[email protected]>",
"description": "A React component to zoom images on hover",
"bugs": "https://github.com/LeoNero/react-img-zoom/issues",
"homepage": "https://github.com/LeoNero/react-img-zoom",
"license": "MIT",
"private": false,
"repository": {
"type": "git",
"url": "[email protected]:LeoNero/react-img-zoom.git"
},
"keywords": [
"react",
"image",
"zoom",
"mouse"
],
"scripts": {
"build": "env NODE_ENV=production rollup -c",
"docz:dev": "docz dev",
"docz:build": "docz build",
"test": "BABEL_ENV=test ava --verbose",
"test:watch": "BABEL_ENV=test ava --watch",
"lint": "eslint './src/**/*.js'"
},
"peerDependencies": {
"prop-types": "*",
"react": "*"
},
"devDependencies": {
"ava": "0.25.0",
"babel-core": "6.26.3",
"babel-plugin-external-helpers": "6.22.0",
"babel-plugin-transform-object-rest-spread": "6.26.0",
"babel-plugin-transform-postcss": "0.3.0",
"babel-preset-env": "1.7.0",
"babel-preset-react": "6.24.1",
"docz": "0.7.1",
"docz-plugin-babel6": "0.7.0",
"docz-plugin-css": "0.7.1",
"enzyme": "3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"eslint-config-airbnb": "17.0.0",
"eslint-plugin-import": "2.13.0",
"eslint-plugin-jsx-a11y": "6.1.1",
"eslint-plugin-react": "7.10.0",
"prop-types": "15.6.2",
"react": "16.4.1",
"react-addons-test-utils": "15.6.2",
"rollup": "0.63.5",
"rollup-plugin-babel": "3.0.7",
"rollup-plugin-eslint": "5.0.0",
"rollup-plugin-postcss": "1.6.2"
},
"ava": {
"require": [
"babel-register"
],
"babel": "inherit"
}
}