-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
47 lines (47 loc) · 1.23 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
{
"name": "vue-grecaptcha",
"version": "1.0.1",
"description": "Google Recaptcha for VueJS",
"main": "dist/vue-grecaptcha.js",
"unpkg": "dist/vue-grecaptcha.js",
"files": [
"dist",
"src"
],
"scripts": {
"build": "rm -fr dist && webpack && uglifyjs --compress --mangle --output dist/vue-grecaptcha.min.js -- dist/vue-grecaptcha.js",
"dev": "webpack --colors --watch",
"test": "eslint src/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/drozdzynski/vue-grecaptcha.git"
},
"keywords": [
"vue",
"vuejs",
"google",
"recaptcha"
],
"author": "Krystian Drożdżyński",
"license": "MIT",
"bugs": {
"url": "https://github.com/drozdzynski/vue-grecaptcha/issues"
},
"homepage": "https://github.com/drozdzynski/vue-grecaptcha#readme",
"devDependencies": {
"babel-core": "^6.24.0",
"babel-eslint": "^7.2.1",
"babel-loader": "^6.4.1",
"babel-preset-es2015": "^6.24.0",
"eslint": "^3.18.0",
"eslint-config-standard": "^7.1.0",
"eslint-loader": "^1.7.0",
"eslint-plugin-html": "^2.0.1",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^2.1.1",
"q": "^1.5.0",
"uglify-js": "^2.8.15",
"webpack": "^2.3.1"
}
}