-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
96 lines (96 loc) · 2.99 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
{
"name": "flutterwave-vue-v3",
"version": "1.0.9",
"private": false,
"description": "Flutterwave official Vue library to accept payment via Card , USSD, QrCode etc.",
"author": "Flutterwave",
"repository": {
"type": "git",
"url": "git+https://github.com/Flutterwave/Vue.git"
},
"homepage": "https://github.com/Flutterwave/Vue",
"keywords": [
"Flutterwave",
"Vue",
"Flw",
"Typescript",
"Fintech",
"Fluterwave"
],
"license": "MIT",
"main": "dist/flw-ts.ssr.js",
"browser": "dist/flw-ts.esm.js",
"module": "dist/flw-ts.esm.js",
"unpkg": "dist/flw-ts.min.js",
"types": "dist/types/src/entry.esm.d.ts",
"files": [
"dist/*",
"src/**/*.vue",
"README.md"
],
"sideEffects": false,
"scripts": {
"serve": "vue-cli-service serve dev/serve.ts",
"build": "cross-env NODE_ENV=production rollup --config build/rollup.config.js",
"build:ssr": "cross-env NODE_ENV=production rollup --config build/rollup.config.js --format cjs",
"build:es": "cross-env NODE_ENV=production rollup --config build/rollup.config.js --format es",
"build:unpkg": "cross-env NODE_ENV=production rollup --config build/rollup.config.js --format iife",
"lint": "vue-cli-service lint",
"test:unit": "vue-cli-service test:unit",
"coverage": "nyc npm run test:unit",
"coverage:report": "nyc report --reporter=text-lcov > coverage.lcov && codecov"
},
"devDependencies": {
"@babel/core": "^7.14.6",
"@babel/preset-env": "^7.14.7",
"@babel/preset-typescript": "^7.14.5",
"@rollup/plugin-alias": "^3.1.2",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-commonjs": "^14.0.0",
"@rollup/plugin-node-resolve": "^9.0.0",
"@rollup/plugin-replace": "^2.4.2",
"@types/chai": "^4.2.15",
"@types/mocha": "^8.2.1",
"@typescript-eslint/eslint-plugin": "^5.4.0",
"@typescript-eslint/parser": "^5.4.0",
"@vue/cli-plugin-babel": "^5.0.8",
"@vue/cli-plugin-eslint": "~5.0.0",
"@vue/cli-plugin-typescript": "^5.0.8",
"@vue/cli-plugin-unit-mocha": "~5.0.0",
"@vue/cli-service": "^5.0.8",
"@vue/eslint-config-airbnb": "^6.0.0",
"@vue/eslint-config-typescript": "^9.1.0",
"@vue/test-utils": "^1.1.3",
"@zerollup/ts-transform-paths": "^1.7.18",
"chai": "^4.3.7",
"codecov": "^3.8.3",
"cross-env": "^7.0.3",
"eslint": "^7.32.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-vue": "^8.0.3",
"eslint-plugin-vuejs-accessibility": "^1.1.0",
"minimist": "^1.2.5",
"nyc": "^15.1.0",
"rimraf": "^3.0.2",
"rollup": "^2.52.8",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.30.0",
"rollup-plugin-vue": "^6.0.0",
"ttypescript": "^1.5.12",
"typescript": "^4.0.3",
"vue": "^2.6.14",
"vue-template-compiler": "^2.6.14"
},
"peerDependencies": {
"vue": "^2.6.14"
},
"engines": {
"node": ">=10"
},
"bugs": {
"url": "https://github.com/Flutterwave/Vue/issues"
},
"directories": {
"example": "example"
}
}