forked from posva/vue-promised
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
118 lines (118 loc) · 3.12 KB
/
package.json
File metadata and controls
118 lines (118 loc) · 3.12 KB
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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
{
"name": "vue-promised",
"version": "2.1.0",
"description": "Some awesome description",
"main": "dist/vue-promised.cjs.js",
"unpkg": "dist/vue-promised.global-vue-2.js",
"jsdelivr": "dist/vue-promised.global-vue-2.js",
"module": "dist/vue-promised.esm-bundler.js",
"types": "dist/vue-promised.d.ts",
"sideEffects": false,
"author": {
"name": "Eduardo San Martin Morote",
"email": "posva13@gmail.com"
},
"scripts": {
"build": "rollup -c rollup.config.js",
"docs": "vite",
"docs:build": "vite build",
"build:dts": "api-extractor run --local --verbose",
"release": "bash scripts/release.sh",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 1",
"size": "size-limit",
"lint": "prettier -c --parser typescript \"{src,__tests__,e2e}/**/*.[jt]s?(x)\"",
"lint:fix": "yarn run lint --write",
"test:types": "tsc --build tsconfig.json",
"test:unit": "jest --coverage",
"test": "yarn run test:types && yarn run test:unit && yarn run build && yarn run build:dts"
},
"files": [
"dist/*.js",
"dist/vue-promised.d.ts",
"LICENSE",
"README.md"
],
"keywords": [
"vue",
"promise",
"composition",
"api",
"usePromise",
"async"
],
"license": "MIT",
"devDependencies": {
"@microsoft/api-extractor": "7.8.1",
"@rollup/plugin-alias": "^3.1.2",
"@rollup/plugin-commonjs": "^19.0.0",
"@rollup/plugin-node-resolve": "^13.0.0",
"@rollup/plugin-replace": "^2.3.4",
"@size-limit/preset-small-lib": "^5.0.1",
"@types/jest": "^26.0.23",
"@types/jsdom": "^16.2.6",
"@vitejs/plugin-vue": "^1.2.3",
"@vue/compiler-sfc": "^3.1.1",
"@vue/server-renderer": "^3.1.1",
"@vue/test-utils": "^2.0.0-rc.6",
"codecov": "^3.8.2",
"conventional-changelog-cli": "^2.1.1",
"faked-promise": "^2.2.2",
"jest": "^26.5.3",
"jest-mock-warn": "^1.1.0",
"lint-staged": "^11.0.0",
"mande": "^1.0.0",
"pascalcase": "^1.0.0",
"prettier": "^2.3.1",
"prismjs": "^1.23.0",
"rollup": "^2.51.1",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.30.0",
"size-limit": "^5.0.1",
"ts-jest": "^26.5.3",
"typescript": "^4.3.2",
"vite": "^2.3.7",
"vue": "^3.0.2",
"vue-prism-component": "^2.0.0",
"yorkie": "^2.0.0"
},
"gitHooks": {
"pre-commit": "lint-staged",
"commit-msg": "node scripts/verifyCommit.js"
},
"lint-staged": {
"*.js": [
"prettier --write"
],
"*.ts?(x)": [
"prettier --parser=typescript --write"
]
},
"size-limit": [
{
"path": "size-checks/minimal.js"
},
{
"path": "size-checks/all.js"
}
],
"repository": {
"type": "git",
"url": "git+https://github.com/posva/vue-promised.git"
},
"bugs": {
"url": "https://github.com/posva/vue-promised/issues"
},
"homepage": "https://github.com/posva/vue-promised#readme",
"dependencies": {
"vue-demi": "latest"
},
"peerDependencies": {
"@vue/composition-api": "^1.0.0",
"vue": "^2.0.0 || >=3.0.0-0"
},
"peerDependenciesMeta": {
"@vue/composition-api": {
"optional": true
}
}
}