-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
84 lines (84 loc) · 2.53 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "vue-service-model",
"version": "0.18.1",
"description": "Vue.js library for handling REST service requests with caching, aggregation and model definitions",
"license": "MIT",
"author": {
"name": "Freakzlike"
},
"keywords": [
"vue",
"model",
"service",
"rest",
"library",
"api",
"request",
"cache"
],
"homepage": "https://freakzlike.github.io/vue-service-model/",
"repository": {
"type": "git",
"url": "git+https://github.com/freakzlike/vue-service-model.git"
},
"bugs": {
"url": "https://github.com/freakzlike/vue-service-model/issues"
},
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib/**/*",
"dist/**/*"
],
"scripts": {
"clean": "rimraf ./lib && rimraf ./dist",
"build": "npm run clean && npm run build:dist && npm run build:lib",
"build:dist": "rollup -c",
"build:lib": "tsc -p ./src/tsconfig.json && copyfiles -u 1 src/**/*.d.ts lib",
"test:unit": "vue-cli-service test:unit",
"test:coverage": "vue-cli-service test:unit --coverage",
"test:lib": "vue-cli-service test:unit --config=jest.lib.config.js",
"test:buildlib": "npm run build && npm run test:lib",
"lint": "vue-cli-service lint --no-fix",
"lint:autofix": "vue-cli-service lint",
"fullcheck": "npm run lint && npm run test:unit && npm run test:buildlib",
"docs:dev": "vuepress dev docs",
"docs:build": "vuepress build docs"
},
"dependencies": {
"axios": "^0.21.1",
"tslib": "^2.1.0"
},
"peerDependencies": {
"vue": "^2.6.0"
},
"devDependencies": {
"@types/jest": "^26.0.20",
"@typescript-eslint/eslint-plugin": "^3.9.0",
"@typescript-eslint/parser": "^3.9.0",
"@vue/cli-plugin-babel": "^4.5.10",
"@vue/cli-plugin-eslint": "^4.5.10",
"@vue/cli-plugin-typescript": "^4.5.10",
"@vue/cli-plugin-unit-jest": "^4.5.10",
"@vue/cli-service": "^4.5.10",
"@vue/eslint-config-standard": "^5.1.2",
"@vue/eslint-config-typescript": "^5.1.0",
"@vue/test-utils": "^1.1.2",
"copyfiles": "^2.4.1",
"eslint": "^6.8.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"eslint-plugin-vue": "^6.2.2",
"rimraf": "^3.0.2",
"rollup": "^2.36.2",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.29.0",
"typescript": "^3.9.7",
"vue": "^2.6.12",
"vue-async-computed": "^3.9.0",
"vue-template-compiler": "^2.6.12",
"vuepress": "^1.8.0"
}
}