forked from nguyenvuvn/autocomplete-vue
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.68 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
{
"name": "autocomplete-vue",
"version": "1.1.0",
"description": "Autocomplete text-input made with VueJs",
"repository": {
"type": "git",
"url": "git+https://github.com/tecbeast42/autocomplete-vue.git"
},
"main": "dist/js/autocomplete-vue.js",
"keywords": [
"vuejs",
"autocomplete",
"component",
"vueify"
],
"author": "TecBeast",
"license": "MIT",
"bugs": {
"url": "https://github.com/tecbeast42/autocomplete-vue/issues"
},
"homepage": "https://github.com/tecbeast42/autocomplete-vue#readme",
"scripts": {
"build": "./node_modules/.bin/webpack -p",
"prepublish": "npm run build",
"dev": "npm run watch & npm run karma",
"watch": "./node_modules/.bin/webpack --watch",
"mocha": "mocha --compilers js:babel-core/register",
"karma": "./node_modules/.bin/karma start karma.conf.js",
"test": "npm run ci",
"ci": "npm run karma -- --single-run"
},
"devDependencies": {
"babel-core": "^6.17.0",
"babel-loader": "7",
"babel-plugin-transform-async-to-generator": "^6.22.0",
"babel-polyfill": "^6.23.0",
"babel-preset-es2015": "^6.24.0",
"babel-register": "^6.24.0",
"chai": "^3.5.0",
"clean-webpack-plugin": "^0.1.16",
"css-loader": "^0.27.3",
"gulp": "^3.9.1",
"karma": "^1.4.1",
"karma-chai": "^0.1.0",
"karma-mocha": "^1.3.0",
"karma-phantomjs-launcher": "^1.0.2",
"karma-webpack": "^2.0.3",
"mocha": "^3.2.0",
"node-sass": "^4.5.1",
"sass-loader": "^6.0.3",
"vue": "^2.1.10",
"vue-loader": "^11.1.4",
"vue-resource": "^1.3.4",
"vue-template-compiler": "^2.2.5",
"webpack": "^2.2.1"
},
"peerDependencies": {
"axios": "^0.16.2"
}
}