-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.85 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
{
"name": "react-svg-coordinates",
"version": "1.1.0",
"description":
"Function for your SVG react component to calculate x and y coordinates for a given dataset",
"author": "Martin O'Grady",
"license": "MIT",
"repository": {
"type": "git",
"url": "git@github.com:grady-lad/react-svg-coordinates.git"
},
"main": "dist/index.js",
"module": "dist/index.es.js",
"jsnext:main": "dist/index.es.js",
"scripts": {
"build": "rollup -c",
"start": "rollup -c -w",
"prepublish": "npm run build",
"predeploy": "cd example && npm install && npm run build",
"test": "export NODE_ENV=test && jest ./src",
"test:watch": "export NODE_ENV=test && jest ./src --watch",
"deploy": "gh-pages -d example/build"
},
"jest": {
"setupTestFrameworkScriptFile": "./tests/setup.js"
},
"peerDependencies": {
"prop-types": ">=15",
"react": ">=15"
},
"dependencies": {
"hoist-non-react-statics": "^2.3.1"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-eslint": "^8.0.2",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"enzyme": "^3.2.0",
"enzyme-adapter-react-16": "^1.1.0",
"eslint": "^4.12.1",
"eslint-config-airbnb": "^15.1.0",
"eslint-config-react-app": "^2.0.1",
"eslint-plugin-flowtype": "^2.39.1",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^5.1.1",
"eslint-plugin-react": "^7.5.1",
"gh-pages": "^1.0.0",
"jest": "^21.2.1",
"prop-types": "^15.6.0",
"react": "16.2.0",
"rollup": "^0.52.1",
"rollup-plugin-babel": "^3.0.2",
"rollup-plugin-commonjs": "^8.2.1",
"rollup-plugin-node-resolve": "^3.0.0",
"rollup-plugin-postcss": "^0.5.5"
},
"files": ["dist"]
}