-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
105 lines (105 loc) · 4.13 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
{
"name": "toolcool-range-slider",
"version": "4.0.28",
"description": "Responsive range slider library written in typescript and using web component technologies. Pure JavaScript without additional dependencies. It has a rich set of settings, including one and two pointers, a vertical slider, touch, mousewheel and keyboard support, local and session storage, and RTL support.",
"main": "./dist/toolcool-range-slider.min.js",
"types": "./index.d.ts",
"scripts": {
"core:build": "node run/core.js",
"core:watch": "node run/core.js -- watch",
"test": "./node_modules/karma/bin/karma start ./karma.conf.cjs --single-run true",
"test:watch": "./node_modules/karma/bin/karma start ./karma.conf.cjs --auto-watch true",
"eslint": "eslint ./src/**",
"docs:website": "http-server ./docs",
"docs:build": "node ./src/docs/generator/index.js",
"docs:watch": "nodemon ./src/docs/generator/index.js",
"docs:install": "node node_modules/markdown-documentation-maker/run/install.js",
"typescript-declarations": "tsc --emitDeclarationOnly",
"binding-labels-plugin:build": "node run/plugins/binding-labels-plugin.js",
"binding-labels-plugin:watch": "node run/plugins/binding-labels-plugin.js -- watch",
"generated-labels-plugin:build": "node run/plugins/generated-labels-plugin.js",
"generated-labels-plugin:watch": "node run/plugins/generated-labels-plugin.js -- watch",
"storage-plugin:build": "node run/plugins/storage-plugin.js",
"storage-plugin:watch": "node run/plugins/storage-plugin.js -- watch",
"moving-tooltip-plugin:build": "node run/plugins/moving-tooltip-plugin.js",
"moving-tooltip-plugin:watch": "node run/plugins/moving-tooltip-plugin.js -- watch",
"origin-center-plugin:build": "node run/plugins/origin-center-plugin.js",
"origin-center-plugin:watch": "node run/plugins/origin-center-plugin.js -- watch",
"marks-plugin:build": "node run/plugins/marks-plugin.js",
"marks-plugin:watch": "node run/plugins/marks-plugin.js -- watch",
"fire-plugin:build": "node run/plugins/fire-plugin.js",
"fire-plugin:watch": "node run/plugins/fire-plugin.js -- watch",
"themes-css-plugin:build": "node run/plugins/themes-css-plugin.js",
"themes-css-plugin:watch": "node run/plugins/themes-css-plugin.js -- watch",
"pointer-shapes-css-plugin:build": "node run/plugins/pointer-shapes-css-plugin.js",
"pointer-shapes-css-plugin:watch": "node run/plugins/pointer-shapes-css-plugin.js -- watch"
},
"type": "module",
"keywords": [
"input",
"slider",
"range",
"range-slider",
"slider-range",
"range-picker",
"rangeslider"
],
"author": "Miriam Zusin <[email protected]>",
"license": "MIT",
"browserslist": [
">0.2%",
"not dead",
"not op_mini all"
],
"repository": {
"type": "git",
"url": "https://github.com/mzusin/toolcool-range-slider"
},
"devDependencies": {
"@sindresorhus/slugify": "^2.2.0",
"@types/react": "^18.0.21",
"@types/react-dom": "^18.0.6",
"@typescript-eslint/eslint-plugin": "^5.30.6",
"@typescript-eslint/parser": "^5.30.6",
"autoprefixer": "^10.4.12",
"cssnano": "^5.1.13",
"esbuild": "^0.14.49",
"eslint": "^8.20.0",
"fs-extra": "^10.1.0",
"highlight.js": "^11.6.0",
"http-server": "^14.1.1",
"karma": "^6.4.0",
"karma-chrome-launcher": "^3.1.1",
"karma-firefox-launcher": "^2.1.2",
"karma-mocha": "^2.0.1",
"karma-qunit": "^4.1.2",
"karma-spec-reporter": "^0.0.34",
"markdown-documentation-maker": "^1.0.9",
"markdown-it": "^13.0.1",
"markdown-it-anchor": "^8.6.6",
"markdown-it-classy": "^0.2.0",
"markdown-it-emoji": "^2.0.2",
"nodemon": "^2.0.20",
"postcss": "^8.4.16",
"postcss-cli": "^10.0.0",
"postcss-import": "^15.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"tailwindcss": "^3.1.8",
"typescript": "^5.0.4",
"uglify-js": "^3.16.2",
"uglifycss": "^0.0.29"
},
"nodemonConfig": {
"restartable": "rs",
"ignore": [
".git",
"node_modules/**/node_modules"
],
"verbose": false,
"watch": [
"src/docs/"
],
"ext": "js,json,html,css,md,ts,tsx,glsl"
}
}