forked from Luehang/react-paypal-button-v2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
107 lines (107 loc) · 3.73 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "react-paypal-button-v2",
"version": "2.3.1",
"description": "An easy and simple to use React button component to implement PayPal's Checkout with Smart Payment Buttons V2 (Version 2).",
"keywords": [
"react-paypal-button-v2",
"react",
"component",
"paypal",
"paypal smart buttons",
"paypal smart payment buttons",
"v2",
"version 2",
"checkout",
"paypal-checkout",
"react-paypal",
"react-component",
"checkout-buttons",
"paypal buttons"
],
"homepage": "https://github.com/Luehang/react-paypal-button-v2",
"author": {
"name": "Lue Hang",
"email": "[email protected]",
"url": "https://www.luehangs.site"
},
"repository": {
"type": "git",
"url": "https://github.com/Luehang/react-paypal-button-v2"
},
"bugs": {
"url": "https://github.com/Luehang/react-paypal-button-v2/issues"
},
"directories": {
"example": "./example",
"lib": "./lib",
"src": "./src"
},
"main": "./lib/index.js",
"types": "dist/index.d.ts",
"dependencies": {
"@babel/polyfill": "^7.2.5",
"prop-types": "^15.7.2"
},
"peerDependencies": {
"react": "^0.14.6 || 15.x.x || 16.x.x",
"react-dom": "^0.14.6 || 15.x.x || 16.x.x"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.3.3",
"@babel/plugin-proposal-class-properties": "^7.3.3",
"@babel/plugin-proposal-object-rest-spread": "^7.3.2",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/preset-env": "^7.3.1",
"@babel/preset-react": "^7.0.0",
"@babel/preset-typescript": "^7.3.3",
"@types/enzyme": "^3.1.18",
"@types/enzyme-adapter-react-16": "^1.0.4",
"@types/jest": "^23.3.14",
"@types/node": "^11.9.4",
"@types/react": "^16.8.3",
"@types/react-dom": "^16.8.1",
"@types/webpack-env": "^1.13.7",
"@typescript-eslint/eslint-plugin": "1.4.0",
"@typescript-eslint/parser": "1.4.0",
"babel-core": "^6.26.3",
"babel-eslint": "^10.0.1",
"babel-jest": "^24.1.0",
"babel-loader": "^8.0.5",
"cross-env": "^5.2.0",
"css-loader": "^2.1.0",
"enzyme": "^3.8.0",
"enzyme-adapter-react-16": "^1.9.1",
"enzyme-to-json": "^3.3.5",
"eslint": "^5.9.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-react": "^7.11.1",
"html-webpack-plugin": "^3.2.0",
"jest": "^23.6.0",
"mini-css-extract-plugin": "^0.5.0",
"optimize-css-assets-webpack-plugin": "^5.0.1",
"path": "^0.12.7",
"react": "^16.8.2",
"react-dom": "^16.8.2",
"source-map-loader": "^0.2.4",
"style-loader": "^0.23.1",
"typescript": "^3.3.3",
"uglifyjs-webpack-plugin": "^2.1.1",
"webpack": "^4.29.4",
"webpack-cli": "^3.2.3",
"webpack-dev-server": "^3.1.14"
},
"scripts": {
"build": "npm run build:types && npm run build:js",
"build:types": "tsc --emitDeclarationOnly",
"build:js": "babel src --out-dir lib --extensions \".tsx\" --ignore \"**/*.test.tsx\" --source-maps inline",
"build:bundle": "webpack-cli --config ./webpack.config.js --mode production",
"start": "webpack-dev-server --config ./example/webpack.config.js --mode development --open --hot",
"lint": "./node_modules/.bin/eslint src/ example/",
"test": "jest --watchAll",
"test:once": "jest",
"coverage": "jest --coverage && cat ./coverage/lcov.info | coveralls"
},
"license": "MIT"
}