-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
86 lines (86 loc) · 2.39 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
{
"name": "vue-use-stripe",
"version": "0.1.1",
"description": "Thin Vue 3 wrapper for Stripe.js",
"main": "./dist/index.umd.js",
"module": "./dist/index.esm.js",
"unpkg": "./dist/index.min.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.esm.js",
"require": "./dist/index.umd.js"
}
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "vite",
"vue-version-fix": "yarn vue-demi-fix",
"build": "rimraf dist && rollup -c",
"lint": "eslint --ext *.ts,.js --fix ./src/* && prettier --list-different --write \"**/*.{ts,js,json}\"",
"prepublishOnly": "yarn lint && yarn build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/frandiox/vue-use-stripe.git"
},
"keywords": [
"stripe",
"elements",
"vue",
"vue3",
"typescript"
],
"author": "Fran Dios <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/frandiox/vue-use-stripe/issues"
},
"homepage": "https://github.com/frandiox/vue-use-stripe#readme",
"files": [
"dist/*",
"src/*"
],
"peerDependencies": {
"@vue/composition-api": "^1.0.0-rc.1",
"vue": "^2.0.0 || >=3.0.0-rc.1"
},
"peerDependenciesMeta": {
"@vue/composition-api": {
"optional": true
}
},
"dependencies": {
"vue-demi": "^0.6.0"
},
"devDependencies": {
"@stripe/stripe-js": "^1.12.0",
"@types/jest": "^26.0.10",
"@typescript-eslint/eslint-plugin": "^2.33.0",
"@typescript-eslint/parser": "^2.33.0",
"@vue/composition-api": "^1.0.0-rc.1",
"@vue/eslint-config-prettier": "6.x",
"@vue/eslint-config-standard": "5.x",
"@vue/eslint-config-typescript": "^5.0.2",
"esbuild": "^0.6.25",
"eslint": "^6.0.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jest": "^23.20.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-prettier-vue": "^3.0.0-alpha.2",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"eslint-plugin-typescript": "^0.14.0",
"eslint-plugin-unicorn": "^21.0.0",
"eslint-plugin-vue": "^7.0.0-beta.2",
"prettier": "^2.0.5",
"rimraf": "^3.0.2",
"rollup": "^2.26.3",
"rollup-plugin-dts": "^1.4.10",
"rollup-plugin-esbuild": "^2.4.2",
"typescript": "^3.9.7",
"vite": "^2.0.0-beta.69",
"vue": "^3.0.0"
}
}