forked from michaeldzjap/react-signature-pad-wrapper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 2.56 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
79
80
81
{
"name": "react-signature-pad-wrapper",
"version": "1.2.4",
"description": "A React component wrapper for signature_pad",
"main": "dist/react-signature-pad-wrapper.js",
"module": "dist/react-signature-pad-wrapper.es.js",
"files": [
"dist"
],
"scripts": {
"test": "jest",
"build": "./node_modules/.bin/rollup --config",
"watch": "./node_modules/.bin/rollup --config --watch",
"lint": "./node_modules/.bin/eslint ./",
"clean": "rm -rf dist"
},
"keywords": [
"react",
"signature_pad"
],
"author": "Michael Dzjaparidze",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/michaeldzjap/react-signature-pad-wrapper.git"
},
"bugs": {
"url": "https://github.com/michaeldzjap/react-signature-pad-wrapper/issues"
},
"peerDependencies": {
"react": "^15.5.0 || ^16.0.0"
},
"devDependencies": {
"@babel/core": "^7.4.3",
"@babel/plugin-external-helpers": "^7.2.0",
"@babel/plugin-proposal-class-properties": "^7.4.0",
"@babel/plugin-transform-runtime": "^7.4.3",
"@babel/preset-env": "^7.4.3",
"@babel/preset-react": "^7.0.0",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^24.7.1",
"canvas": "^2.4.1",
"enzyme": "^3.9.0",
"enzyme-adapter-react-16": "^1.12.1",
"eslint": "^5.16.0",
"eslint-plugin-import": "^2.17.2",
"eslint-plugin-jest": "^22.4.1",
"eslint-plugin-react": "^7.12.4",
"jest": "^24.7.1",
"react-dom": "^16.8.6",
"rollup": "^1.10.1",
"rollup-plugin-babel": "^4.3.2",
"rollup-plugin-commonjs": "^9.3.4",
"rollup-plugin-eslint": "^5.1.0",
"rollup-plugin-node-resolve": "^4.2.3",
"rollup-plugin-sourcemaps": "^0.4.2",
"rollup-plugin-terser": "^4.0.4",
"rollup-plugin-uglify": "^6.0.2"
},
"dependencies": {
"@babel/runtime": "^7.4.3",
"prop-types": "^15.7.2",
"react": "^16.8.6",
"signature_pad": "^2.3.2",
"throttle-debounce": "^2.1.0"
},
"jest": {
"setupFiles": [
"<rootDir>/__tests__/shim.js",
"<rootDir>/__tests__/config.js"
],
"testPathIgnorePatterns": [
"<rootDir>/__tests__/shim.js",
"<rootDir>/__tests__/config.js",
"<rootDir>/__tests__/helpers/",
"<rootDir>/node_modules/"
],
"collectCoverage": true
}
}