-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
42 lines (42 loc) · 1.06 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
{
"name": "vue-polling",
"version": "0.1.14",
"description": "Vue plugin for polling backend APIs",
"main": "src/main.js",
"scripts": {
"test": "mocha --require @babel/register",
"build": "eslint --ext .js src && webpack --progress --hide-modules",
"lint": "eslint --ext .js src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/straightdave/vue-polling.git"
},
"keywords": [
"vue"
],
"author": "Dave Wu",
"license": "MIT",
"bugs": {
"url": "https://github.com/straightdave/vue-polling/issues"
},
"homepage": "https://github.com/straightdave/vue-polling#readme",
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.4.0",
"@babel/preset-env": "^7.4.2",
"@babel/register": "^7.4.0",
"babel-loader": "^8.0.5",
"eslint": "^5.16.0",
"eslint-plugin-vue": "^5.2.2",
"mocha": "^6.0.2",
"webpack": "^4.29.6",
"webpack-cli": "^3.3.0"
},
"dependencies": {
"@babel/polyfill": "^7.4.0",
"axios": "^0.19.0",
"uuid": "^3.3.2",
"vue": "^2.6.10"
}
}