-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
41 lines (41 loc) · 1.16 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
{
"name": "react-konva-anchors",
"version": "0.2.9",
"description": "A helping package for positioning, and sizing react-konva objects. HTML and CSS provide an easy solution for this, but for canvas, it is more painful. This library aims to ease your work with react-konva.",
"main": "dist/main.js",
"module": "./index.js",
"scripts": {
"test": "mocha --require @babel/register ./*.test.js ./dist/main.test.js",
"build": "webpack ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/fxdave/react-konva-anchros.git"
},
"keywords": [
"react",
"konva",
"anchor",
"positioning",
"sizing"
],
"author": "David Judge (David Biró)",
"license": "MIT",
"bugs": {
"url": "https://github.com/fxdave/react-konva-anchros/issues"
},
"homepage": "https://github.com/fxdave/react-konva-anchros#readme",
"dependencies": {
"react": "*"
},
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/preset-env": "^7.3.1",
"@babel/preset-react": "^7.0.0",
"@babel/register": "^7.0.0",
"babel-loader": "^8.0.5",
"mocha": "^5.2.0",
"webpack": "^4.29.5",
"webpack-cli": "^3.2.3"
}
}