forked from hCaptcha/vue-hcaptcha
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
103 lines (103 loc) · 2.62 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
{
"name": "@hcaptcha/vue-hcaptcha",
"version": "0.2.2",
"main": "./src/main.js",
"author": "Ali Neer",
"homepage": "https://github.com/hCaptcha/vue-hcaptcha",
"organization": "hCaptcha",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/hCaptcha/vue-hcaptcha.git",
"web": "https://github.com/hCaptcha/vue-hcaptcha"
},
"bugs": {
"url": "https://github.com/hCaptcha/vue-hcaptcha/issues"
},
"scripts": {
"test": "vue-cli-service test:unit",
"lint": "vue-cli-service lint --no-fix",
"lint:fix": "vue-cli-service lint",
"serve": "vue-cli-service serve",
"build": "vue-cli-service build"
},
"dependencies": {
"vue": "^2.6.12"
},
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/plugin-transform-modules-commonjs": "^7.2.0",
"@babel/preset-env": "^7.0.0",
"@vue/cli": "3.12.1",
"@vue/cli-plugin-babel": "^3.0.1",
"@vue/cli-plugin-eslint": "^3.0.1",
"@vue/cli-plugin-unit-jest": "^3.0.1",
"@vue/cli-service": "^3.0.1",
"@vue/test-utils": "^1.0.0-beta.27",
"@yonyou-cloud/eslint-config": "0.0.1",
"autoprefixer": "^9.1.5",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^23.4.2",
"babel-loader": "^8.0.4",
"eslint": "^5.10.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-flowtype": "^3.2.0",
"eslint-plugin-html": "^5.0.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-node": "^8.0.0",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"eslint-plugin-vue": "^5.0.0",
"jest": "^24.9.0",
"jest-cli": "^23.6.0",
"jest-vue-preprocessor": "^1.4.0",
"jsdom": "^13.1.0",
"jsdom-global": "^3.0.2",
"mini-css-extract-plugin": "^0.4.2",
"thread-loader": "^1.2.0",
"vue-jest": "^3.0.2",
"vue-loader": "^15.4.2",
"vue-server-renderer": "^2.5.21",
"vue-template-compiler": "^2.6.12",
"webpack": "^4.28.1"
},
"eslintConfig": {
"root": true,
"env": {
"node": true
},
"extends": [
"plugin:vue/essential",
"eslint:recommended"
],
"rules": {},
"parserOptions": {
"parser": "babel-eslint"
}
},
"postcss": {
"plugins": {
"autoprefixer": {}
}
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 8"
],
"jest": {
"moduleFileExtensions": [
"js",
"json",
"vue"
],
"transform": {
".*\\.(vue)$": "vue-jest",
"^.+\\.js$": "<rootDir>/node_modules/babel-jest"
}
},
"keywords": [
"hcaptcha", "captcha", "component", "vue", "vue-component", "earn"
]
}