-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·46 lines (46 loc) · 1.42 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
{
"name": "react-canvas-polygons",
"version": "1.1.22",
"description": "Draw lines and polygons with canvas. Save and load path to canvas.",
"main": "build/index.js",
"scripts": {
"dev": "cd dev && npm run storybook",
"build": "npx babel dev/src/DrawCanvas -d build --presets=@babel/preset-env,@babel/preset-react,babel-preset-minify --plugins=@babel/plugin-proposal-class-properties",
"prepublishOnly": "npm run build",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/aeciolevy/react-canvas-polygons.git"
},
"keywords": [
"react",
"canvas",
"draw",
"polygons",
"polygon",
"line",
"lines"
],
"author": "Aécio Levy",
"license": "MIT",
"bugs": {
"url": "https://github.com/aeciolevy/react-canvas-polygons/issues"
},
"homepage": "https://github.com/aeciolevy/react-canvas-polygons#readme",
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.3.3",
"@babel/plugin-proposal-class-properties": "^7.2.3",
"@babel/plugin-transform-classes": "^7.2.2",
"@babel/preset-env": "^7.2.3",
"@babel/preset-react": "^7.0.0",
"babel-plugin-transform-react-remove-prop-types": "^0.4.21",
"babel-preset-minify": "^0.5.0",
"watch": "^1.0.2"
},
"dependencies": {
"prop-types": "15.6.2",
"react": "^16.6.6"
}
}