-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathpackage.json
59 lines (59 loc) · 1.63 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
{
"name": "react-braintree-fields",
"version": "2.0.0",
"description": "React component for braintree hosted fields",
"browser": "dist/build.full.js",
"main": "dist/build.full.js",
"module": "dist/build.module.js",
"jsnext:main": "dist/build.module.js",
"repository": "https://github.com/nathanstitt/react-braintree-fields.git",
"author": "Nathan Stitt",
"license": "MIT",
"peerDependencies": {
"react": "16 - 18"
},
"scripts": {
"test": "jest",
"build": "./script/build",
"demo": "$(npm bin)/webpack serve",
"ci": "./script/cibuild",
"preversion": "./script/preversion"
},
"keywords": [
"react",
"braintree",
"hosted fields"
],
"devDependencies": {
"@babel/core": "^7.13.15",
"@babel/plugin-proposal-class-properties": "^7.13.0",
"@babel/preset-env": "^7.13.15",
"@babel/preset-react": "^7.13.13",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"babel-core": "^7.0.0-bridge.0",
"babel-loader": "^8.2.2",
"babelrc-rollup": "^3.0.0",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.6",
"eslint": "^7.24.0",
"eslint-config-argosity": "^3.1.0",
"eslint-plugin-react": "^7.23.2",
"jest": "^26.6.3",
"jest-cli": "^26.6.3",
"pretty": "^2.0.0",
"prop-types": "^15.7.2",
"raf": "^3.4.1",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"react-test-renderer": "^18.2.0",
"rollup": "^2.45.2",
"rollup-plugin-babel": "^4.4.0",
"webpack": "^5.32.0",
"webpack-cli": "^4.6.0",
"webpack-dev-server": "^3.11.2"
},
"dependencies": {
"braintree-web": "^3.90.0"
}
}