This repository has been archived by the owner on Feb 13, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
88 lines (88 loc) · 2.85 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
82
83
84
85
86
87
88
{
"name": "react-paypal-button",
"version": "4.1.1",
"description": "a button component to implement PayPal's Express Checkout in React",
"author": "andrewangelle",
"email": "[email protected]",
"repository": "http://github.com/andrewangelle/react-paypal-button.git",
"license": "MIT",
"main": "bin/index.min.js",
"types": "bin/types/src/index.d.ts",
"scripts": {
"build": "rm -rf bin && tsc --emitDeclarationOnly && webpack --config webpack.config.js",
"start": "webpack-dev-server --config ./example/webpack.config.js --mode development --open --hot",
"test": "jest --watchAll",
"test:once": "jest",
"coverage": "jest --coverage && cat ./coverage/lcov.info | coveralls",
"preversion": "rm -rf bin && tsc --emitDeclarationOnly && webpack --config webpack.config.js",
"postversion": "git push --follow-tags origin master"
},
"files": [
"bin",
"bin/types"
],
"keywords": [
"react",
"component"
],
"peerDependencies": {
"react": "^16.8.x",
"react-dom": "^16.8.x"
},
"resolutions": {
"babel-core": "7.0.0-bridge.0"
},
"devDependencies": {
"@babel/cli": "^7.5.5",
"@babel/core": "^7.5.5",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/plugin-proposal-object-rest-spread": "^7.5.5",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/plugin-transform-runtime": "^7.5.5",
"@babel/polyfill": "^7.4.4",
"@babel/preset-env": "^7.5.5",
"@babel/preset-react": "^7.0.0",
"@babel/preset-typescript": "^7.3.3",
"@babel/runtime": "^7.5.5",
"@testing-library/jest-dom": "^4.1.0",
"@testing-library/react": "^9.1.3",
"@testing-library/react-hooks": "^2.0.1",
"@types/enzyme": "^3.10.3",
"@types/enzyme-adapter-react-16": "^1.0.4",
"@types/jest": "^23.3.14",
"@types/node": "^11.13.20",
"@types/react": "^16.9.2",
"@types/react-dom": "^16.9.0",
"@types/testing-library__react": "^9.1.1",
"@types/webpack-env": "^1.14.0",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^25.0.0",
"babel-loader": "^8.0.6",
"cross-env": "^5.2.0",
"css-loader": "^2.1.0",
"dotenv": "^8.1.0",
"dotenv-webpack": "^1.7.0",
"enzyme": "^3.10.0",
"enzyme-adapter-react-16": "^1.14.0",
"enzyme-to-json": "^3.4.0",
"html-webpack-plugin": "^3.2.0",
"jest": "^25.0.0",
"mini-css-extract-plugin": "^0.5.0",
"optimize-css-assets-webpack-plugin": "^5.0.3",
"path": "^0.12.7",
"react": "^16.9.0",
"react-dom": "^16.9.0",
"source-map-loader": "^0.2.4",
"style-loader": "^0.23.1",
"ts-jest": "^23.10.5",
"ts-loader": "^5.4.5",
"tslint": "^5.19.0",
"tslint-react": "^3.6.0",
"typescript": "^3.5.3",
"uglifyjs-webpack-plugin": "^2.2.0",
"webpack": "^4.39.3",
"webpack-cli": "^3.3.7",
"webpack-dev-server": "^3.8.0"
},
"dependencies": {}
}