forked from orchidjs/tom-select
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
131 lines (131 loc) · 3.82 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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
{
"name": "@gravitywiz/tom-select",
"keywords": [
"select",
"ui",
"form",
"input",
"control",
"autocomplete",
"tagging",
"tag"
],
"main": "dist/js/tom-select.complete.js",
"browser": "dist/js/tom-select.complete.js",
"module": "dist/esm/tom-select.complete.js",
"types": "dist/types/tom-select.complete.d.ts",
"description": "Tom Select is a versatile and dynamic <select> UI control. Forked from Selectize.js to provide a framework agnostic autocomplete widget with native-feeling keyboard navigation, it's useful for tagging, contact lists, country selectors, etc.",
"homepage": "https://tom-select.js.org",
"version": "0.0.5",
"files": [
"/dist",
"/src"
],
"author": "Josh Schmidt (https://github.com/oyejorge)",
"contributors": [
"Brian Reavis <brian@thirdroute.com>"
],
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/orchidjs/tom-select.git"
},
"devDependencies": {
"@11ty/eleventy": "^1.0.0",
"@11ty/eleventy-plugin-syntaxhighlight": "^4.0.0",
"@babel/core": "^7.13.1",
"@babel/plugin-proposal-class-properties": "^7.13.0",
"@babel/preset-env": "^7.14.7",
"@babel/preset-typescript": "^7.14.5",
"@lodder/grunt-postcss": "^3.0.0",
"@orchidjs/eleventy-plugin-ids": "^0.1.0",
"@popperjs/core": "^2.9.2",
"@rollup/plugin-alias": "^4.0.2",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-node-resolve": "^15.0.1",
"@types/jquery": "^3.5.14",
"@types/jqueryui": "^1.12.14",
"@wordpress/eslint-plugin": "^17.1.0",
"autoprefixer": "^10.2.4",
"bootstrap": "npm:bootstrap@4",
"bootstrap-sass": "^3.4.3",
"bootstrap5": "npm:bootstrap@^5.3.2",
"broken-link-checker": "^0.7.8",
"chai": "^4.3.0",
"cssnano": "^5.0.1",
"eslint": "^8.52.0",
"eslint-plugin-unused-imports": "^3.0.0",
"fs-extra": "^11.1.1",
"grunt": "^1.3.0",
"grunt-cli": "^1.3.2",
"grunt-contrib-clean": "^2.0.0",
"grunt-contrib-connect": "^3.0.0",
"grunt-contrib-copy": "^1.0.0",
"grunt-contrib-watch": "^1.1.0",
"grunt-replace": "^2.0.0",
"grunt-sass": "^3.1.0",
"grunt-shell": "^4.0.0",
"husky": "^8.0.1",
"icon-blender": "^1.0.0-beta.4",
"jquery": "^3.6.0",
"jsdom": "^20.0.0",
"karma": "^6.3.17",
"karma-browserstack-launcher": "^1.6.0",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^3.1.0",
"karma-coverage": "^2.0.3",
"karma-coveralls": "^2.1.0",
"karma-firefox-launcher": "^2.1.0",
"karma-mocha": "^2.0.1",
"karma-mocha-reporter": "^2.2.5",
"karma-safari-launcher": "^1.0.0",
"karma-sourcemap-loader": "^0.3.8",
"load-grunt-tasks": "^5.1.0",
"mocha": "^10.0.0",
"postcss": "^8.4.7",
"prettier": "^3.0.3",
"puppeteer": "^19.4.0",
"rollup": "^2.79.0",
"rollup-plugin-insert": "^1.3.2",
"rollup-plugin-terser": "^7.0.2",
"sass": "^1.49.9",
"syn": "^0.15.0",
"tslib": "^2.4.0",
"typescript": "^4.8.3"
},
"scripts": {
"build": "grunt build",
"build:types": "tsc -p .config --emitDeclarationOnly",
"test": "karma start",
"test:one": "karma start --test_one",
"test:typescript": "tsc -p .config --noemit",
"dev": "grunt dev",
"start": "grunt serve",
"pretest": "grunt build",
"prepare": "husky install",
"lint": "yarn eslint src test --ext .js,.jsx,.ts,.tsx",
"lint:fix": "yarn lint --fix"
},
"engines": {
"node": "*"
},
"browserslist": [
">= 0.5%",
"not dead",
"Chrome >= 60",
"Firefox >= 60",
"Firefox ESR",
"Edge >= 17",
"iOS >= 12",
"Safari >= 12",
"not Explorer <= 11"
],
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/tom-select"
},
"dependencies": {
"@orchidjs/sifter": "^1.0.3",
"@orchidjs/unicode-variants": "^1.0.4"
}
}