-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
117 lines (117 loc) · 3.65 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
115
116
117
{
"name": "@a-luna/svelte-simple-tables",
"version": "0.0.29",
"license": "MIT",
"description": "Accessible, sortable, paginated table component",
"author": "Aaron Luna (https://github.com/a-luna)",
"repository": {
"type": "git",
"url": "https://github.com/a-luna/svelte-simple-tables.git"
},
"homepage": "https://github.com/a-luna/svelte-simple-tables",
"bugs": "https://github.com/a-luna/svelte-simple-tables/issues",
"keywords": [
"svelte",
"svelte component",
"table component",
"sortable table",
"paginated table",
"accessibility"
],
"main": "./index.js",
"svelte": "./index.js",
"types": "./index.d.ts",
"publishConfig": {
"access": "public"
},
"scripts": {
"dev": "vite --host --port 3502",
"build": "vite build",
"preview": "vite preview",
"check": "svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-check --tsconfig ./tsconfig.json --watch",
"lint": "prettier --ignore-path .gitignore --write --plugin-search-dir=. . && eslint --ignore-path .gitignore . --fix",
"format": "prettier --ignore-path .gitignore --write --plugin-search-dir=. .",
"test": "vitest run --coverage",
"test:ui": "vitest watch --ui --threads false --coverage",
"test:watch": "vitest watch --coverage",
"commit": "git-cz",
"release": "pnpm run release:pre && pnpm run release:package && pnpm run release:push && pnpm run release:npm && pnpm run release:github",
"release:pre": "git checkout main && git pull origin main && pnpm i && pnpm run test && pnpm run lint && git add .",
"release:package": "standard-version -a && svelte-kit package",
"release:push": "git push --follow-tags origin main",
"release:npm": "pnpm publish ./package",
"release:github": "env-cmd conventional-github-releaser -p angular",
"ci:validate": "rm -rf node_modules && pnpm ci && run-s test lint",
"prepublishOnly": "pnpm run ci:validate && pnpm run build",
"package": "svelte-kit package"
},
"devDependencies": {
"@babel/core": "^7.18.9",
"@babel/preset-env": "^7.18.9",
"@babel/preset-typescript": "^7.18.6",
"@commitlint/cli": "^15.0.0",
"@commitlint/config-conventional": "^15.0.0",
"@leveluptuts/svelte-toy": "^0.0.15",
"@sveltejs/kit": "^1.0.0-next.379",
"@testing-library/dom": "^8.16.0",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/svelte": "^3.1.3",
"@testing-library/user-event": "^14.2.6",
"@tsconfig/svelte": "^2.0.1",
"@types/node": "^17.0.45",
"@typescript-eslint/eslint-plugin": "^5.30.7",
"@typescript-eslint/parser": "^5.30.7",
"@vitest/ui": "^0.17.1",
"autoprefixer": "^10.4.7",
"c8": "^7.11.3",
"commitizen": "^4.2.5",
"conventional-github-releaser": "^3.1.5",
"cssnano": "^5.1.12",
"env-cmd": "^10.1.0",
"eslint": "^8.20.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-svelte3": "^4.0.0",
"husky": "^7.0.4",
"jsdom": "^20.0.0",
"lint-staged": "^12.5.0",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.14",
"prettier": "^2.7.1",
"prettier-plugin-svelte": "^2.7.0",
"standard-version": "^9.5.0",
"svelte": "^3.49.0",
"svelte-check": "^2.8.0",
"svelte-loader": "^3.1.3",
"svelte-preprocess": "^4.10.7",
"svelte2tsx": "^0.4.14",
"tslib": "^2.4.0",
"typescript": "^4.7.4",
"vite": "^3.0.2",
"vitest": "^0.17.1",
"vitest-svelte-kit": "^0.0.6"
},
"type": "module",
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{js,ts}": [
"prettier --write",
"eslint --fix",
"git add"
]
},
"dependencies": {
"@sveltejs/vite-plugin-svelte": "^1.0.1"
}
}