-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.29 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) · 1.29 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
{
"name": "react-svg-pathline",
"version": "0.6.0",
"description": "React component for drawing SVG path through set of points, rendering straight lines where possible and smooth corners in other cases",
"main": "index.js",
"scripts": {
"start": "webpack-dev-server",
"build": "babel index.jsx -o index.js",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/AlexSugak/react-svg-pathline.git"
},
"files": [
"index.js"
],
"keywords": [
"react",
"svg",
"path",
"line",
"smooth"
],
"author": "Alexandr Sugak",
"license": "MIT",
"bugs": {
"url": "https://github.com/AlexSugak/react-svg-pathline/issues"
},
"homepage": "https://github.com/AlexSugak/react-svg-pathline#readme",
"devDependencies": {
"babel-cli": "^6.10.1",
"babel-core": "^6.10.4",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.11.1",
"babel-preset-stage-2": "^6.11.0",
"json-loader": "^0.5.4",
"react-hot-loader": "^3.1.3",
"webpack": "^2.2.0",
"webpack-dev-server": "^2.2.0"
},
"peerDependencies": {
"react": "^16.2.0 || ^17.0.0 || ^18.0.0",
"react-dom": "^16.2.0 || ^17.0.0 || ^18.0.0"
},
"dependencies": {
"prop-types": "^15.5.8"
}
}