forked from agilgur5/react-signature-canvas
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.26 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
{
"name": "react-signature-canvas",
"version": "0.2.4",
"description": "A signature pad implementation in React",
"main": "build/index.js",
"scripts": {
"test": "webpack && npm pack",
"start": "webpack-dev-server -d --inline --hot",
"dist": "webpack -p --config webpack.production.config.js",
"pub": "npm run dist && npm publish"
},
"keywords": [
"react",
"react-component",
"component",
"signature",
"sign",
"canvas",
"draw",
"pad",
"signature-pad",
"react-signature-pad"
],
"repository": {
"type": "git",
"url": "https://github.com/agilgur5/react-signature-canvas.git"
},
"author": "Anton Gilgur",
"license": "Apache-2.0",
"devDependencies": {
"babel-core": "^6.0.14",
"babel-loader": "^6.0.0",
"babel-preset-es2015": "^6.14.0",
"babel-preset-react": "^6.11.1",
"babel-preset-stage-2": "^6.13.0",
"css-loader": "^0.24.0",
"react": "^15.3.0",
"react-dom": "^15.3.0",
"react-hot-loader": "^1.2.7",
"style-loader": "^0.13.1",
"webpack": "^1.12.2",
"webpack-dev-server": "^1.10.1"
},
"peerDependencies": {
"prop-types": "^15.5.8",
"react": "0.14 - 16",
"react-dom": "0.14 - 16"
},
"dependencies": {
"trim-canvas": "^0.1.0"
}
}