-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.44 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
{
"name": "vue-flexible-table",
"version": "0.4.0",
"description": "A flexible Vue table component.",
"author": "Stefan Peters",
"repository": {
"type": "git",
"url": "https://github.com/gbv/vue-flexible-table.git"
},
"license": "MIT",
"type": "module",
"files": [
"dist",
"src/FlexibleTable.vue",
"src/index.js"
],
"module": "./src/index.js",
"exports": {
".": "./src/index.js",
"./style": "./dist/style.css",
"./build": "./dist/vue-flexible-table.js"
},
"scripts": {
"dev": "vite",
"build": "vite build",
"build-app": "BUILD_MODE=app vite build",
"test": "npm run lint",
"lint": "eslint",
"fix": "eslint --fix",
"lint-staged": "lint-staged",
"release": "test $(git rev-parse --abbrev-ref HEAD) = master && git pull && npm version $SEMVER && git push --follow-tags",
"release:patch": "SEMVER=patch npm run release",
"release:minor": "SEMVER=minor npm run release",
"release:major": "SEMVER=major npm run release"
},
"lint-staged": {
"src/**/*.{js,vue}": [
"eslint --fix"
],
"src/*.{js,vue}": [
"eslint --fix"
]
},
"pre-commit": [
"lint-staged"
],
"dependencies": {
"vue": "^2.7.16"
},
"devDependencies": {
"@vitejs/plugin-vue2": "^2.3.1",
"eslint": "~9.11",
"eslint-config-gbv": "~2.1",
"lint-staged": "^15.2.10",
"pre-commit": "^1.2.2",
"vite": "^5.4.8",
"vue-flexible-table": "file:."
}
}