-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
108 lines (108 loc) · 3.07 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
{
"name": "tabs-more-button",
"version": "2.0.0",
"private": false,
"description": "A lightweight library for making tabbed interfaces responsive by hiding overflow tabs while keeping the active tab visible.",
"keywords": [
"tabs",
"responsive",
"responsive tabs",
"more button",
"show more",
"view more",
"js",
"javascript",
"user-interface",
"web",
"overflow",
"active tab",
"tab management",
"horizontal tabs",
"vertical tabs",
"RTL"
],
"author": {
"name": "dev-javascript",
"email": "javascript.code.dev@gmail.com"
},
"main": "lib/cjs/api.js",
"module": "lib/esm/api.js",
"repository": {
"type": "git",
"url": "git+https://github.com/dev-javascript/tabs-more-button.git"
},
"homepage": "https://github.com/dev-javascript/tabs-more-button#readme",
"bugs": {
"url": "https://github.com/dev-javascript/tabs-more-button/issues"
},
"scripts": {
"watch": "set NODE_OPTIONS=--openssl-legacy-provider & run-p watch:*",
"watch:js": "cross-env WATCH=true npm run build:dist:dev",
"build": "set NODE_OPTIONS=--openssl-legacy-provider & npm-run-all --parallel clean:* build:lib:* --parallel build:dist:*",
"build:dist:prod": "rollup -c",
"build:dist:dev": "webpack --config webpack.config.js --env=development",
"build:lib:cjs": "cross-env BABEL_OUTPUT=cjs babel src/ --out-dir lib/cjs/ --ignore **/__tests__,**/__mocks__,**/*.test.js,**/*.js.snap",
"build:lib:esm": "babel src/ --out-dir lib/esm/ --ignore **/__tests__,**/__mocks__,**/*.test.js,**/*.js.snap",
"clean:lib": "rimraf lib",
"clean:dist": "rimraf dist",
"prepublishOnly": "npm run build",
"test": "jest",
"lint": "eslint src",
"deploy": "gh-pages -d demo",
"precommit": "lint-staged"
},
"devDependencies": {
"@babel/cli": "^7.24.7",
"@babel/core": "^7.24.7",
"@babel/eslint-parser": "^7.24.7",
"@babel/plugin-transform-runtime": "^7.24.7",
"@babel/preset-env": "^7.24.7",
"@babel/runtime-corejs3": "^7.24.7",
"@rollup/plugin-commonjs": "^26.0.1",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"babel-loader": "^9.1.3",
"cross-env": "^7.0.3",
"element-resize-detector": "^1.2.4",
"eslint": "^9.6.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"gh-pages": "^6.1.1",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-extended": "^4.0.2",
"lint-staged": "^15.2.7",
"npm-run-all": "^4.1.5",
"prettier": "3.3.2",
"rollup": "^4.18.0",
"webpack": "^5.92.1",
"webpack-cli": "^5.1.4"
},
"files": [
"dist",
"lib",
"src",
"index.d.ts",
"__tests__",
"CHANGELOG.md"
],
"license": "MIT",
"directories": {
"lib": "lib"
},
"types": "./index.d.ts",
"jest": {
"testEnvironment": "jsdom",
"setupFilesAfterEnv": [
"jest-extended"
],
"collectCoverage": true,
"modulePathIgnorePatterns": [
"./src/__mock__",
"./src/__sandbox__"
]
},
"lint-staged": {
"*.js": "eslint"
}
}