forked from Haixing-Hu/vue-country-select
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 2.22 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
{
"name": "vue-country-select",
"description": "A Vue.js component implementing the select control used to select countries.",
"version": "0.2.3",
"author": {
"name": "Haixing Hu",
"email": "[email protected]"
},
"homepage": "https://github.com/Haixing-Hu/vue-country-select",
"license": "MIT",
"repository": {
"type": "git",
"url": "[email protected]:Haixing-Hu/vue-country-select.git"
},
"bugs": {
"url": "https://github.com/Haixing-Hu/vue-country-select/issues"
},
"main": "dist/vue-country-select.min.js",
"configs": {
"directories": {
"dist": "dist",
"src": "src",
"test": "test",
"coverage": "coverage"
}
},
"scripts": {
"build": "bower install && gulp build",
"test": "bower install && gulp test:coveralls",
"coverage": "bower install && gulp test:coverage",
"coveralls": "bower install && gulp test:coveralls",
"ci": "bower install && gulp test:coveralls && gulp build"
},
"engines": {
"node": ">=0.10.0"
},
"devDependencies": {
"bower": "^1.7.9",
"bower-update-all": "^0.1.2",
"del": "^2.2.0",
"run-sequence": "^1.2.1",
"bower-webpack-plugin": "^0.1.9",
"gulp": "^3.9.1",
"gulp-util": "^3.0.7",
"webpack": "^1.13.1",
"mocha": "^2.5.3",
"karma": "^0.13.22",
"karma-chrome-launcher": "^1.0.1",
"karma-safari-launcher": "^1.0.0",
"karma-firefox-launcher": "^1.0.0",
"karma-phantomjs-launcher": "^1.0.0",
"karma-sauce-launcher": "^1.0.0",
"karma-mocha": "^1.0.1",
"karma-mocha-reporter": "^2.0.4",
"karma-coverage": "^1.0.0",
"karma-coveralls": "^1.1.2",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^1.7.0",
"phantomjs-prebuilt": "^2.1.7",
"istanbul": "^0.4.3",
"istanbul-instrumenter-loader": "^0.2.0",
"vue": "^1.0.24",
"vue-loader": "^8.5.2",
"vue-html-loader": "^1.2.2",
"vue-style-loader": "^1.0.0",
"vue-hot-reload-api": "^1.2.0",
"raw-loader": "^0.5.1",
"html-loader": "^0.4.3",
"css-loader": "^0.23.1",
"file-loader": "^0.8.5",
"babel-loader": "^6.2.4",
"babel-core": "^6.8.0",
"babel-plugin-transform-runtime": "^6.8.0",
"babel-runtime": "^6.0.0",
"babel-preset-es2015": "^6.6.0"
}
}