forked from morphatic/v-stripe-elements
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
129 lines (129 loc) · 4.59 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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
{
"name": "v-stripe-elements",
"version": "0.0.1-development",
"description": "A Vue component that styles Stripe Elements to match the Vuetify UI library.",
"author": "Morgan Benton <morgan.benton@gmail.com> (https://morphatic.com)",
"license": "MIT",
"main": "dist/v-stripe-elements.js",
"module": "dist/v-stripe-elements.js",
"jsdelivr": "dist/v-stripe-elements.js",
"unpkg": "dist/v-stripe-elements.js",
"types": "types/index.d.ts",
"files": [
"dist/",
"es5/",
"lib/",
"src/",
"types/"
],
"keywords": [
"stripe",
"elements",
"vuetify",
"vue"
],
"homepage": "https://github.com/morphatic/v-stripe-elements#readme",
"repository": {
"type": "git",
"url": "https://github.com/morphatic/v-stripe-elements.git"
},
"bugs": {
"url": "https://github.com/morphatic/v-stripe-elements/issues"
},
"scripts": {
"build": "concurrently \"yarn build:dist --no-progress\" \"yarn build:lib\" -n \"dist,lib\" --kill-others-on-fail -r && yarn build:json",
"build:dist": "rimraf dist && cross-env NODE_ENV=production webpack --config build/dist.js --progress",
"build:json": "echo \"JSON for tags and attributes should be generated manually. Don't forget!!!\"",
"build:lib": "node build/lib.js",
"changelog": "github_changelog_generator && git add CHANGELOG.md && git commit -am \"Updating changelog\"",
"commit": "git-cz",
"coverage": "cat ./coverage/lcov.info | coveralls",
"dev": "cross-env NODE_ENV=development webpack-dev-server --config build/dev.js --hot",
"lint": "concurrently -n \"tsc,tslint,eslint\" --kill-others-on-fail \"tsc --noEmit --pretty\" \"tslint -p . src/**/*.ts -t verbose\" \"eslint --ext .js,.ts src\"",
"lint:fix": "concurrently -n \"tsc,tslint,eslint\" \"tsc --noEmit --pretty\" \"tslint --fix -p . src/**/*.ts -t verbose\" \"eslint --fix --ext .js,.ts src\"",
"release": "yarn run semantic-release",
"test": "node build/jest.js",
"test:coverage": "yarn test --coverage",
"test:unix": "cross-env NODE_ENV=test jest",
"test:watch": "yarn test --watch",
"test:win32": "cross-env NODE_ENV=test jest -i",
"tsc": "tsc",
"watch": "cross-env TARGET=development webpack --config build/dist.js --progress --hide-modules --watch",
"semantic-release": "semantic-release"
},
"devDependencies": {
"@babel/cli": "^7.5.5",
"@babel/core": "^7.6.2",
"@babel/plugin-proposal-object-rest-spread": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@mdi/js": "^4.4.95",
"@types/jest": "^24.0.17",
"@types/node": "^12.7.2",
"@types/stripe-v3": "^3.1.6",
"@types/tapable": "^1.0.4",
"@types/webpack": "^4.32.1",
"@typescript-eslint/eslint-plugin": "^2.3.3",
"@typescript-eslint/parser": "^2.3.3",
"@vue/eslint-config-standard": "^4.0.0",
"@vue/test-utils": "^1.0.0-beta.29",
"autoprefixer": "^9.6.1",
"babel-loader": "^8.0.6",
"babel-plugin-detective": "^2.0.0",
"change-case": "^3.1.0",
"commitizen": "^4.0.3",
"concurrently": "^4.1.1",
"core-js": "^3.2.1",
"cross-env": "^6.0.3",
"css-loader": "^3.2.0",
"cssnano": "^4.1.10",
"cz-conventional-changelog": "3.0.2",
"deepmerge": "^4.0.0",
"dotenv": "^8.0.0",
"eslint": "^6.1.0",
"eslint-loader": "^2.2.1",
"eslint-plugin-jest": "^22.17.0",
"eslint-plugin-vue": "^5.2.3",
"eslint-plugin-vuetify": "^1.0.0-beta.3",
"fibers": "^4.0.1",
"fork-ts-checker-webpack-plugin": "^1.5.0",
"friendly-errors-webpack-plugin": "^1.7.0",
"happypack": "^5.0.1",
"identity-obj-proxy": "^3.0.0",
"jest": "^24.9.0",
"jest-css-modules": "^2.1.0",
"jest-environment-jsdom-fourteen": "^0.1.0",
"jest-serializer-html": "^7.0.0",
"mini-css-extract-plugin": "^0.8.0",
"optimize-css-assets-webpack-plugin": "^5.0.3",
"postcss-loader": "^3.0.0",
"rimraf": "^3.0.0",
"sass": "^1.22.10",
"sass-loader": "^7.2.0",
"semantic-release": "^15.13.24",
"shelljs": "^0.8.3",
"style-loader": "^1.0.0",
"terser-webpack-plugin": "^1.4.1",
"ts-jest": "^24.0.2",
"ts-loader": "^6.2.0",
"tslint": "^5.18.0",
"typescript": "^3.5.3",
"typestrict": "^1.0.2",
"url-loader": "^2.1.0",
"vue": "^2.6.10",
"vue-loader": "^15.7.1",
"vue-meta": "^2.2.1",
"vue-plugin-load-script": "^1.2.0",
"vue-template-compiler": "^2.6.10",
"vuetify": "^2.1.2",
"vuetify-loader": "^1.3.0",
"webpack": "^4.39.2",
"webpack-cli": "^3.3.6",
"webpack-dev-server": "^3.8.0",
"webpack-merge": "^4.2.2"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}