-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 904 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 904 Bytes
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-http",
"version": "1.1.1",
"description": "vuejs axios jquery like plugin",
"main": "index.js",
"scripts": {
"test": "jasmine",
"build": "webpack",
"build:dev": "webpack --config webpack.config.dev.js",
"prettier:fix": "prettier write ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/suiz0/vue-http.git"
},
"keywords": [
"vue",
"js",
"http",
"plugin"
],
"author": "cesar iduarte",
"license": "ISC",
"bugs": {
"url": "https://github.com/suiz0/vue-http/issues"
},
"homepage": "https://github.com/suiz0/vue-http#readme",
"devDependencies": {
"awesome-typescript-loader": "^5.2.1",
"jasmine": "^3.10.0",
"nock": "^13.0.10",
"prettier": "^2.6.2",
"typescript": "^3.8.3",
"webpack": "^5.62.1",
"webpack-cli": "^4.9.1"
},
"dependencies": {
"axios": "^0.21.4"
}
}