-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
48 lines (48 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
43
44
45
46
47
48
{
"name": "@shaynekasai/v-fetch",
"version": "1.1.4",
"description": "A Vue directive to add AJAX to your app without the boilerplate",
"keywords": [
"ajax",
"async",
"directive",
"vue",
"axios",
"http",
"xhr",
"XMLHttpRequest"
],
"main": "dist/v-fetch.js",
"scripts": {
"test": "jest",
"build": "webpack --mode production --progress"
},
"author": "Shayne Kasai <[email protected]>",
"license": "MIT",
"devDependencies": {
"@babel/preset-env": "^7.12.11",
"@vue/test-utils": "^1.1.2",
"babel-jest": "^26.6.3",
"babel-loader": "^8.2.2",
"babel-plugin-transform-regenerator": "^6.26.0",
"babel-polyfill": "^6.26.0",
"flush-promises": "^1.0.2",
"jest": "^26.6.3",
"jest-fetch-mock": "^3.0.3",
"vue": "^2.6.12",
"vue-jest": "^3.0.7",
"webpack": "^5.15.0",
"webpack-cli": "^4.3.1"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"vue"
],
"transform": {
"^.+\\.js$": "babel-jest",
".*\\.(vue)$": "vue-jest"
}
}
}