-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 2.35 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
49
{
"name": "@asmadsen/vue-axios",
"version": "0.0.20",
"description": "Vue wrapper for Axios with error catching and authentication",
"main": "dist/index.common.js",
"types": "types/index.d.ts",
"repository": "https://github.com/asmadsen/vue-axios",
"author": "Andreas Storesund Maden <git@asmadsen.no>",
"license": "MIT",
"scripts": {
"build": "vue-cli-service build --target lib --name index ./src/index.ts && tsc -p ./tsconfig.build.json --emitDeclarationOnly",
"lint": "vue-cli-service lint",
"test:unit": "vue-cli-service test:unit",
"prepublishOnly": "yarn build"
},
"devDependencies": {
"@babel/plugin-proposal-optional-chaining": "^7.0.0-beta.51",
"@babel/plugin-transform-modules-commonjs": "^7.0.0-beta.49",
"@babel/preset-typescript": "^7.0.0-beta.51",
"@types/jest": "^23.0.0",
"@types/moxios": "^0.4.8",
"@types/promise.prototype.finally": "^2.0.2",
"@vue/cli-plugin-babel": "^3.0.0-beta.16",
"@vue/cli-plugin-eslint": "^3.0.0-beta.16",
"@vue/cli-plugin-typescript": "^3.0.0-beta.16",
"@vue/cli-plugin-unit-jest": "^3.0.0-beta.16",
"@vue/cli-service": "^3.0.0-beta.16",
"@vue/eslint-config-standard": "^3.0.0-beta.16",
"@vue/eslint-config-typescript": "^3.0.0-beta.16",
"@vue/test-utils": "^1.0.0-beta.16",
"babel-core": "^6.26.3",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.7.0",
"babel-preset-stage-2": "^6.24.1",
"chalk": "^2.4.1",
"moment": "^2.22.2",
"moxios": "^0.4.0",
"ora": "^2.1.0",
"rimraf": "^2.6.2",
"ts-jest": "^22.4.6",
"vue": "^2.5.16",
"vue-template-compiler": "^2.5.16",
"vuex": "^3.0.1",
"wallaby-vue-compiler": "^1.0.2"
},
"dependencies": {
"axios": "^0.18.0"
}
}