forked from agilgur5/react-signature-canvas
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 2.05 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "react-signature-canvas",
"version": "1.0.3",
"description": "A React wrapper component around signature_pad. Unopinionated and heavily updated fork of react-signature-pad",
"main": "build/index.js",
"files": [
"src/index.js",
"build/"
],
"author": "Anton Gilgur",
"license": "Apache-2.0",
"homepage": "https://github.com/agilgur5/react-signature-canvas",
"repository": {
"type": "git",
"url": "https://github.com/agilgur5/react-signature-canvas.git"
},
"bugs": {
"url": "https://github.com/agilgur5/react-signature-canvas/issues"
},
"keywords": [
"react",
"react-component",
"component",
"signature",
"sign",
"e-sign",
"e-signature",
"canvas",
"trim",
"whitespace",
"draw",
"pad",
"wrapper",
"signature-pad",
"react-signature-pad"
],
"scripts": {
"lint": "standard --parser babel-eslint",
"lint:fix": "standard --parser babel-eslint --fix",
"start": "webpack-dev-server -d --inline --hot",
"dist": "webpack -p --config webpack.production.config.js",
"test": "jest",
"test:pub": "npm run dist && npm pack",
"pub": "npm run dist && npm publish",
"changelog": "changelog-maker"
},
"peerDependencies": {
"prop-types": "^15.5.8",
"react": "0.14 - 16",
"react-dom": "0.14 - 16"
},
"dependencies": {
"signature_pad": "^2.3.2",
"trim-canvas": "^0.1.0"
},
"devDependencies": {
"@agilgur5/changelog-maker": "^3.0.0",
"babel-core": "^6.26.3",
"babel-eslint": "^10.0.2",
"babel-jest": "^23.6.0",
"babel-loader": "^6.0.0",
"babel-preset-es2015": "^6.14.0",
"babel-preset-react": "^6.11.1",
"babel-preset-stage-2": "^6.13.0",
"canvas-prebuilt": "^1.6.11",
"css-loader": "^0.24.0",
"enzyme": "^3.10.0",
"enzyme-adapter-react-16": "^1.14.0",
"jest": "^24.8.0",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-hot-loader": "^1.2.7",
"standard": "^13.0.2",
"style-loader": "^0.13.1",
"webpack": "^1.12.2",
"webpack-dev-server": "^1.10.1"
}
}