-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
40 lines (40 loc) · 1.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
{
"name": "vue-axios-cors",
"version": "1.0.1",
"description": "This is http client vue.js plugin for cross origin access without preflight. It will automatically convert application/json to simple request (application/x-www-form-urlencoded).",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "yarn lint && rm -rf ./dist && tsc",
"lint": "eslint --fix -c ./.eslintrc.json './**/*.ts'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gyarasu/vue-axios-cors.git"
},
"keywords": [
"vue",
"axios"
],
"author": "gyarasu <dev.yoshitsugu@gmail.com> (https://github.com/gyarasu)",
"license": "MIT",
"bugs": {
"url": "https://github.com/gyarasu/vue-axios-cors/issues"
},
"homepage": "https://github.com/gyarasu/vue-axios-cors#readme",
"dependencies": {
"axios": "^0.19.0",
"qs": "^6.9.1",
"vue": "^2.6.10"
},
"devDependencies": {
"@types/qs": "6.9.0",
"@typescript-eslint/eslint-plugin": "2.10.0",
"@typescript-eslint/parser": "2.10.0",
"eslint": "6.7.2",
"eslint-config-prettier": "6.7.0",
"eslint-plugin-prettier": "3.1.1",
"prettier": "1.19.1",
"typescript": "3.7.3"
}
}