-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
114 lines (114 loc) · 3.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
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
{
"name": "@thibremy/vue-fetch-composable",
"version": "0.2.0-rc.4",
"main": "dist/vue-fetch-composable.common.js",
"browser": "dist/vue-fetch-composable.umd.min.js",
"unpkg": "dist/vue-fetch-composable.umd.min.js",
"jsdelivr": "dist/vue-fetch-composable.umd.min.js",
"files": [
"dist/*.js",
"dist/*.d.ts",
"README.md"
],
"keywords": [
"vue",
"fetch",
"vue-hooks",
"vue-function-api",
"vue-fn",
"vue-composable",
"vue-composition-api"
],
"scripts": {
"serve": "vue-cli-service serve playground",
"build": "vue-cli-service build src/index.ts --target lib --name VueFetchComposable --filename vue-fetch-composable",
"test": "npm run test:unit",
"test:unit": "vue-cli-service test:unit",
"lint": "vue-cli-service lint",
"docs": "vuepress dev docs",
"docs:build": "vuepress build docs",
"storybook:build": "vue-cli-service storybook:build -c config/storybook",
"storybook:serve": "vue-cli-service storybook:serve -p 6006 -c config/storybook",
"version": "conventional-changelog -p angular -i CHANGELOG.md -s && git add CHANGELOG.md"
},
"dependencies": {
"core-js": "^3.6.5",
"vue": "^3.0.0"
},
"devDependencies": {
"@storybook/addon-actions": "^5.3.20",
"@storybook/addon-knobs": "^5.3.20",
"@storybook/addon-links": "^5.3.20",
"@storybook/vue": "^5.3.20",
"@types/node": "^13.1.8",
"@typescript-eslint/eslint-plugin": "^2.34.0",
"@typescript-eslint/parser": "^2.34.0",
"@vue/cli-plugin-babel": "^4.5.6",
"@vue/cli-plugin-eslint": "^4.5.6",
"@vue/cli-plugin-typescript": "^4.5.6",
"@vue/cli-plugin-unit-jest": "^4.5.6",
"@vue/cli-service": "^4.5.7",
"@vue/eslint-config-prettier": "^5.1.0",
"@vue/eslint-config-typescript": "^5.1.0",
"@vue/test-utils": "1.1.0",
"@vue/compiler-sfc": "^3.0.0",
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "^10.1.0",
"conventional-changelog-cli": "^2.1.0",
"eslint": "^5.16.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-vue": "^6.2.2",
"jest-fetch-mock": "^3.0.3",
"lint-staged": "^10.4.0",
"nock": "^13.0.4",
"prettier": "^2.1.2",
"typescript": "^4.0.2",
"vue-cli-plugin-storybook": "^1.3.0",
"vue-template-compiler": "^2.6.12",
"vuepress": "^1.5.4"
},
"eslintConfig": {
"root": true,
"env": {
"node": true
},
"extends": [
"plugin:vue/essential",
"@vue/prettier",
"@vue/typescript"
],
"rules": {},
"parserOptions": {
"parser": "@typescript-eslint/parser"
}
},
"prettier": {
"printWidth": 100,
"singleQuote": true,
"trailingComma": "es5",
"semi": false
},
"postcss": {
"plugins": {
"autoprefixer": {}
}
},
"browserslist": [
"> 1%",
"last 2 versions"
],
"jest": {
"preset": "@vue/cli-plugin-unit-jest/presets/typescript-and-babel",
"setupFiles": [
"./tests/unit/setup-jest.ts"
]
},
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.{js,vue}": [
"vue-cli-service lint"
]
}
}