forked from DanSnow/vue-recaptcha
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
95 lines (95 loc) · 2.25 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
{
"name": "vue-recaptcha",
"version": "1.3.0",
"description": "ReCAPTCHA vue component",
"types": "types/index.d.ts",
"module": "dist/vue-recaptcha.es.js",
"main": "dist/vue-recaptcha.js",
"scripts": {
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"build": "rollup -c",
"test": "yarn lint && yarn test:unit && yarn test:types",
"test:unit": "jest src",
"test:e2e": "jest e2e",
"test:types": "tsc -p types/tests"
},
"author": "DanSnow",
"license": "MIT",
"keywords": [
"vue",
"component",
"vue-component",
"google-recaptcha",
"recaptcha"
],
"repository": {
"type": "git",
"url": "https://github.com/DanSnow/vue-recaptcha.git"
},
"bugs": {
"url": "https://github.com/DanSnow/vue-recaptcha/issues"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"{e2e,example,src}/**/*.js": [
"eslint --fix"
]
},
"jest": {
"testPathIgnorePatterns": [
"/node_modules/"
],
"setupFilesAfterEnv": [
"jest-extended"
],
"reporters": [
"default",
[
"jest-junit",
{
"output": "reports/jest/results.xml"
}
]
]
},
"peerDependencies": {
"vue": "^2.0.0"
},
"devDependencies": {
"@babel/cli": "7.13.10",
"@babel/core": "7.13.10",
"@babel/plugin-proposal-object-rest-spread": "7.13.8",
"@babel/preset-env": "7.13.10",
"@rollup/plugin-babel": "5.3.0",
"@vue/test-utils": "1.1.3",
"babel-jest": "26.6.3",
"eslint": "7.21.0",
"eslint-config-prettier": "8.1.0",
"eslint-config-standard": "16.0.2",
"eslint-config-standard-jsx": "10.0.0",
"eslint-import-resolver-node": "0.3.4",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-prettier": "3.3.1",
"eslint-plugin-promise": "4.3.1",
"eslint-plugin-react": "7.22.0",
"http-server": "0.12.3",
"husky": "4.3.8",
"jest": "26.6.3",
"jest-extended": "0.11.5",
"jest-junit": "12.0.0",
"lint-staged": "10.5.4",
"prettier": "2.2.1",
"puppeteer": "8.0.0",
"rollup": "2.40.0",
"rollup-plugin-terser": "7.0.2",
"typescript": "4.2.3",
"vue": "2.6.12",
"vue-template-compiler": "2.6.12"
}
}