-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
81 lines (81 loc) · 2.11 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
{
"name": "wraptastic",
"version": "1.3.1",
"scripts": {
"build": "tsc && vite build",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs",
"build:all": "npm run build && npm run docs:build",
"lint": "npm run lint:js && npm run lint:css && npm run prettier",
"lint:js": "eslint '**/*.{js,ts,vue}' --fix",
"lint:css": "stylelint '**/*.{css,scss}' --fix",
"prettier": "prettier --write ."
},
"description": "Wraptastic.js is a simple JavaScript package that effortlessly helps you manage list wrapping and overflows",
"keywords": [
"front-end",
"web",
"javascript",
"list",
"lists",
"tags",
"wrap",
"wrapping",
"overflow",
"counter"
],
"repository": "https://github.com/j-jalving/wraptastic",
"homepage": "https://j-jalving.github.io/wraptastic/",
"license": "MIT",
"type": "module",
"files": [
"dist"
],
"main": "./dist/wraptastic.umd.cjs",
"module": "./dist/wraptastic.js",
"exports": {
".": {
"import": "./dist/wraptastic.js",
"require": "./dist/wraptastic.umd.cjs"
}
},
"devDependencies": {
"@types/lodash": "^4.14.195",
"@typescript-eslint/eslint-plugin": "^5.59.7",
"@typescript-eslint/parser": "^5.59.7",
"eslint": "^8.41.0",
"eslint-config-prettier": "^8.8.0",
"husky": "^8.0.0",
"prettier": "^2.8.8",
"prettier-plugin-rational-order": "^1.0.3",
"sass": "^1.62.1",
"stylelint": "^15.6.2",
"stylelint-config-recommended-scss": "^12.0.0",
"stylelint-declaration-block-no-ignored-properties": "^2.7.0",
"stylelint-prettier": "^3.0.0",
"stylelint-scss": "^5.0.0",
"typescript": "^5.0.2",
"vite": "^4.3.2",
"vitepress": "^1.0.0-beta.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"**/*.{ts,js,vue}": [
"eslint --fix",
"npx prettier --write"
],
"**/*.{scss,css}": [
"stylelint --fix",
"npx prettier --write"
]
},
"dependencies": {
"@ungap/event-target": "^0.2.4",
"lodash": "^4.17.21"
}
}