-
Notifications
You must be signed in to change notification settings - Fork 42
/
package.json
106 lines (106 loc) · 2.93 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "vue-use-web",
"version": "1.0.1",
"description": "Web APIs implemented as Vue.js composition functions",
"module": "dist/vue-use-web.esm.js",
"unpkg": "dist/vue-use-web.js",
"main": "dist/vue-use-web.js",
"types": "dist/types/index.d.ts",
"homepage": "https://tarektouati.github.io/vue-use-web/",
"repository": "https://github.com/Tarektouati/vue-use-web",
"scripts": {
"docs:dev": "vuepress dev docs",
"docs:build": "vuepress build docs",
"docs:deploy": "./scripts/deploy.sh",
"test": "jest",
"test:cover": "jest --coverage",
"lint": "eslint '{src, test}/**.{js,jsx,ts,tsx}' --fix",
"ts:defs": "./scripts/defs.sh",
"build": "node ./scripts/build && npm run ts:defs",
"prepublish": "npm run build"
},
"author": "Abdelrahman Awad <[email protected]>",
"license": "MIT",
"files": [
"dist/*.js",
"dist/**/*.d.ts"
],
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@testing-library/vue": "^5.0.2",
"@types/jest": "^26.0.13",
"@types/node": "^14.0.5",
"@typescript-eslint/eslint-plugin": "^2.14.0",
"@typescript-eslint/parser": "^2.14.0",
"@vue/composition-api": "^0.6.7",
"@vue/test-utils": "^1.0.0-beta.29",
"@vuepress/plugin-back-to-top": "^1.2.0",
"@vuepress/plugin-google-analytics": "^1.2.0",
"@vuepress/plugin-pwa": "^1.2.0",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^26.0.1",
"bundlesize": "^0.18.0",
"chalk": "^4.0.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.9.0",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.19.1",
"eslint-plugin-jest": "^24.0.0",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"filesize": "^6.0.1",
"flush-promises": "^1.0.2",
"gzip-size": "^5.1.1",
"husky": "^4.2.3",
"jest": "^25.1.0",
"lint-staged": "^10.0.7",
"mkdirp": "^1.0.3",
"prettier": "^2.0.5",
"rollup": "^2.0.6",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-replace": "^2.2.0",
"rollup-plugin-typescript2": "^0.27.0",
"ts-jest": "^25.2.1",
"typescript": "^3.7.4",
"uglify-js": "^3.7.3",
"vue": "^2.6.10",
"vue-jest": "^3.0.5",
"vue-template-compiler": "^2.6.10",
"vuepress": "^1.4.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint --edit -E HUSKY_GIT_PARAMS"
}
},
"bundlesize": [
{
"path": "./dist/*.min.js",
"maxSize": "10 kB"
}
],
"eslintIgnore": [
"locale",
"dist",
"scripts"
],
"lint-staged": {
"*.ts": [
"eslint --fix",
"prettier --write",
"git add",
"jest --maxWorkers=1 --bail --findRelatedTests"
],
"*.js": [
"git add"
]
},
"peerDependencies": {
"@vue/composition-api": "^0.3.2"
},
"dependencies": {}
}