forked from IOfate/react-coinbase-commerce
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
89 lines (89 loc) · 2.48 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
{
"name": "@sendroks/react-coinbase-commerce",
"version": "0.0.11",
"description": "A react component to easily embed a Coinbase Commerce Checkout within your application",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"files": [
"dist"
],
"types": "dist/index.d.ts",
"scripts": {
"build": "rollup -c rollup.config.js",
"examples": "rollup -c rollup.example.config.js",
"typecheck": "tsc --noEmit",
"lint": "eslint src/**/*.{js,jsx,mjs,cjs,ts,tsx}",
"test": "npm run lint && npm run test:unit && npm run build",
"test:unit": "jest"
},
"keywords": [
"react",
"cryptocurrency",
"coinbase",
"commerce",
"bitcoin",
"litecoin",
"dogecoin",
"ethereum",
"iofate",
"whalinvest"
],
"repository": {
"type": "git",
"url": "git+https://github.com/PureMoney/react-coinbase-commerce.git"
},
"bugs": {
"url": "https://github.com/PureMoney/react-coinbase-commerce/issues"
},
"author": "IOfate",
"license": "MIT",
"engines": {
"node": ">=16"
},
"publishConfig": {
"@sendroks:registry": "https://registry.npmjs.org"
},
"peerDependencies": {
"react": ">=18.2.0",
"react-dom": ">=18.2.0"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^24.0.1",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-replace": "^5.0.2",
"@rollup/plugin-terser": "^0.4.0",
"@rollup/plugin-typescript": "^11.0.0",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.4.3",
"@types/jest": "^29.4.0",
"@types/react": "^18.0.28",
"@typescript-eslint/eslint-plugin": "^5.54.0",
"eslint": "^8.35.0",
"eslint-config-standard-with-typescript": "^34.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.6.1",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.32.2",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.4.3",
"jest-environment-jsdom": "^29.4.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rollup": "^3.17.3",
"rollup-plugin-dts": "^5.2.0",
"rollup-plugin-import-css": "^3.1.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-serve": "^2.0.2",
"ts-jest": "^29.0.5",
"tslib": "^2.5.0",
"typescript": "^4.9.5"
},
"homepage": "https://github.com/PureMoney/react-coinbase-commerce#readme",
"directories": {
"example": "examples"
},
"dependencies": {
"react":"18.2.0"
}
}