-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
27 lines (27 loc) · 827 Bytes
/
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
{
"name": "vue-fast-axios",
"version": "1.0.2",
"description": "Solution to remove and simplify axios in components vue",
"main": "dist/index.js",
"scripts": {
"build": "babel ./source/ServiceHandler.js --out-file ./dist/ServiceHandler.js && babel ./source/index.js --out-file ./dist/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/leonardovilarinho/vue-fast-axios.git"
},
"author": "Leonardo Vilarinho",
"license": "GPL-3.0",
"dependencies": {
"axios": "^0.17.0"
},
"bugs": {
"url": "https://github.com/leonardovilarinho/vue-fast-axios/issues"
},
"homepage": "https://github.com/leonardovilarinho/vue-fast-axios#readme",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-es2015": "^6.24.1"
}
}