-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
111 lines (111 loc) · 3.42 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
{
"private": true,
"name": "@frsource/tiny-carousel",
"version": "0.0.0",
"description": "Mobile & desktop-friendly, tiny, efficient (vanilaJS) carousel which takes advantage of CSS snap points (or polyfills it)!",
"author": "Jakub Freisler <[email protected]>",
"license": "MIT",
"packageManager": "[email protected]",
"scripts": {
"release": "pnpm -r publish",
"release:ci": "pnpm release",
"release:test": "pnpm release:ci --dry-run --no-git-checks",
"start": "pnpm -r --parallel --stream start",
"build": "pnpm -r build",
"test": "pnpm -r --parallel test",
"watch:test": "pnpm -r --parallel --stream watch:test",
"coverage": "pnpm -r --parallel coverage",
"lint": "concurrently 'pnpm -r --parallel lint' 'pnpm lint:text'",
"lint:text": "textlint CODE_OF_CONDUCT.md CONTRIBUTING.md README.md packages/*/README.md",
"fix:lint": "concurrently 'pnpm -r --parallel fix:lint' 'pnpm lint:text --fix'",
"prepare": "husky install"
},
"keywords": [
"carousel",
"css",
"js",
"efficient",
"accessibility",
"lightweight",
"snap points",
"CSS snap",
"snapping points",
"simple",
"vanillaJS"
],
"homepage": "https://www.frsource.org/tiny-carousel/",
"repository": {
"type": "git",
"url": "git+https://github.com/FRSource/tiny-carousel.git"
},
"bugs": {
"url": "https://github.com/FRSource/tiny-carousel/issues"
},
"devDependencies": {
"@commitlint/cli": "17.7.1",
"@commitlint/config-conventional": "17.7.0",
"@textlint-rule/textlint-rule-no-unmatched-pair": "1.0.8",
"@types/jest": "27.5.2",
"@typescript-eslint/eslint-plugin": "5.62.0",
"@typescript-eslint/parser": "5.62.0",
"concurrently": "7.6.0",
"coveralls": "3.1.1",
"cpy-cli": "4.2.0",
"dictionary-en": "3.2.0",
"eslint": "8.49.0",
"eslint-plugin-eslint-comments": "3.2.0",
"eslint-plugin-jest": "26.9.0",
"eslint-plugin-monorepo": "0.3.2",
"husky": "8.0.1",
"identity-obj-proxy": "3.0.0",
"jest": "27.5.1",
"microbundle": "0.15.0",
"postcss-import": "14.1.0",
"postcss-reporter": "7.0.5",
"rimraf": "3.0.2",
"sass": "1.66.1",
"stylelint": "15.10.3",
"stylelint-config-sass-guidelines": "9.0.1",
"textlint": "12.6.1",
"textlint-filter-rule-comments": "1.2.2",
"textlint-rule-abbr-within-parentheses": "1.0.2",
"textlint-rule-alex": "3.0.0",
"textlint-rule-apostrophe": "2.0.0",
"textlint-rule-common-misspellings": "1.0.1",
"textlint-rule-en-capitalization": "2.0.3",
"textlint-rule-no-empty-section": "1.1.0",
"textlint-rule-no-start-duplicated-conjunction": "2.0.2",
"textlint-rule-no-todo": "2.0.1",
"textlint-rule-period-in-list-item": "0.3.2",
"textlint-rule-spelling": "0.3.0",
"textlint-rule-stop-words": "3.0.1",
"textlint-rule-terminology": "3.0.2",
"textlint-rule-unexpanded-acronym": "1.2.4",
"ts-jest": "27.1.5",
"typescript": "4.9.5"
},
"workspaces": {
"packages": [
"packages/*"
],
"nohoist": [
"**/@vuepress",
"**/@vuepress/**",
"**/vuepress",
"**/vuepress/**",
"**/vuepress-*",
"**/vuepress-*/**",
"**/jest",
"jest",
"@vue/cli-plugin-unit-jest",
"@vue/cli-plugin-unit-jest/**",
"**/@vue/cli-plugin-unit-jest",
"**/@vue/cli-plugin-unit-jest/**"
]
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
}
}