forked from iamraphson/react-paystack
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.37 KB
/
Copy pathpackage.json
File metadata and controls
76 lines (76 loc) · 2.37 KB
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
{
"name": "react-paystack",
"version": "3.0.1",
"description": "This is an reactJS library for implementing paystack payment gateway",
"main": "dist/index.js",
"module": "dist/index.es.js",
"typings": "dist/index.d.ts",
"jsnext:main": "dist/index.es.js",
"scripts": {
"build": "rm -rf dist && rollup -c ",
"build:watch": "rm -rf dist && rollup -c --watch",
"format": "prettier --write '**/**/*.{js,}'",
"lint": "eslint --ext .js,.ts,.tsx,.jsx --ignore-path .eslintignore .",
"lint:fix": "npm run lint -- --fix",
"test": "jest --env=jsdom",
"test:watch": "jest --watch --verbose --env=jsdom"
},
"repository": {
"type": "git",
"url": "git+https://github.com/iamraphson/react-paystack.git"
},
"keywords": [
"Javascript",
"github",
"ReactJS",
"Open Source",
"payments",
"paystack",
"Gateway"
],
"author": "Ayeni Olusegun <nsegun5@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/iamraphson/react-paystack/issues"
},
"homepage": "https://github.com/iamraphson/react-paystack#readme",
"peerDependencies": {
"react": "^15.0.0 || ^16.0.0",
"react-dom": "^15.0.0 || ^16.0.0"
},
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/preset-env": "^7.9.0",
"@babel/preset-typescript": "^7.9.0",
"@rollup/plugin-commonjs": "^11.0.2",
"@rollup/plugin-node-resolve": "^7.1.1",
"@rollup/plugin-typescript": "^4.0.0",
"@testing-library/react": "^10.0.2",
"@testing-library/react-hooks": "^3.2.1",
"@types/jest": "^25.2.1",
"@types/react": "^16.9.26",
"@types/react-dom": "^16.9.5",
"@typescript-eslint/eslint-plugin": "^2.25.0",
"@typescript-eslint/parser": "^2.25.0",
"babel-eslint": "^10.1.0",
"babel-jest": "^25.2.6",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-jest": "^23.8.2",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-react": "^7.19.0",
"jest": "^26.0.1",
"prettier": "^2.0.2",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-test-renderer": "^16.13.1",
"rollup": "^2.2.0",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-peer-deps-external": "^2.2.2",
"rollup-plugin-typescript2": "^0.26.0",
"ts-jest": "^25.3.1",
"typescript": "^3.8.3"
}
}