forked from DanSnow/vue-recaptcha
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 2.17 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
{
"name": "vue-recaptcha",
"version": "1.1.0",
"description": "ReCAPTCHA vue component",
"types": "types/index.d.ts",
"module": "dist/vue-recaptcha.es.js",
"main": "dist/vue-recaptcha.js",
"scripts": {
"precommit": "lint-staged",
"lint": "prettier-eslint --write {e2e,example,src}/**/*.js && eslint .",
"build": "rollup -c",
"test": "yarn lint && jest && yarn test:types",
"test:ci":
"yarn lint && jest --ci --testResultsProcessor='jest-junit' && yarn test:types",
"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"
},
"lint-staged": {
"{e2e,example,src}/**/*.js": ["prettier-eslint --write", "git add"]
},
"jest": {
"testPathIgnorePatterns": ["/node_modules/", "<rootDir>/e2e/"]
},
"peerDependencies": {
"vue": "^2.0.0"
},
"devDependencies": {
"avoriaz": "^6.3.0",
"babel-cli": "^6.24.1",
"babel-core": "^6.25.0",
"babel-eslint": "^8.0.3",
"babel-jest": "^22.0.4",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-syntax-jsx": "^6.18.0",
"babel-plugin-transform-object-assign": "^6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-preset-env": "^1.6.1",
"eslint": "^4.13.1",
"eslint-config-standard": "^11.0.0",
"eslint-config-standard-jsx": "^5.0.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-node": "^6.0.0",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-react": "^7.5.1",
"eslint-plugin-standard": "^3.0.1",
"http-server": "^0.11.0",
"husky": "^0.14.3",
"jest": "^22.0.4",
"jest-junit": "^3.6.0",
"lint-staged": "^7.0.0",
"prettier-eslint-cli": "^4.6.1",
"puppeteer": "^1.0.0",
"rollup": "^0.57.1",
"rollup-plugin-babel": "^3.0.3",
"rollup-plugin-uglify": "^3.0.0",
"typescript": "^2.6.2",
"vue": "^2.5.13",
"vue-template-compiler": "^2.5.13"
},
"dependencies": {}
}