This repository has been archived by the owner on Aug 16, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 109
/
package.json
110 lines (110 loc) · 3.7 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
{
"name": "selectivity",
"desc": "Modular and light-weight selection library",
"version": "3.1.0",
"repository": {
"type": "git",
"url": "git://github.com/arendjr/selectivity.git"
},
"scripts": {
"build": "yarn build-jquery-source && yarn build-jquery-min && yarn build-react-min && yarn build-react-source && yarn build-vanilla-min && yarn build-vanilla-source",
"build-jquery-min": "gulp --api=jquery --bundle-name=jquery --exclude-modules=plugins/options-validator --minify",
"build-jquery-source": "gulp --api=jquery --bundle-name=jquery",
"build-react-min": "gulp --api=react --bundle-name=react --exclude-modules=plugins/options-validator --export-global --minify",
"build-react-source": "gulp --api=react --bundle-name=react --export-global",
"build-vanilla-min": "gulp --bundle-name= --exclude-modules=plugins/options-validator --export-global --minify",
"build-vanilla-source": "gulp --bundle-name= --export-global",
"lint": "eslint .",
"start": "gulp dev --export-global --source-map",
"test": "yarn lint && yarn unit-tests",
"unit-tests": "jest"
},
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/plugin-transform-modules-commonjs": "^7.5.0",
"@babel/preset-env": "^7.5.5",
"@babel/preset-react": "^7.0.0",
"@babel/register": "^7.5.5",
"@testing-library/jest-dom": "^4.0.0",
"@types/jest": "^24.0.15",
"ansi-colors": "^4.1.1",
"autoprefixer": "^9.6.1",
"babel-eslint": "^10.0.2",
"babel-jest": "^24.8.0",
"browser-sync": "^2.26.7",
"delay": "^4.3.0",
"enzyme": "^3.10.0",
"enzyme-adapter-react-16": "^1.14.0",
"eslint": "^6.1.0",
"eslint-config-prettier": "^6.0.0",
"eslint-plugin-compat": "^3.3.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jest": "^22.13.6",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-react": "^7.14.3",
"fancy-log": "^1.3.3",
"faucet": "0.0.1",
"freshy": "^1.0.4",
"glob": "^7.1.4",
"gulp": "^4.0.2",
"jest": "^24.8.0",
"jest-environment-enzyme": "^7.0.2",
"jest-enzyme": "^7.0.2",
"jquery": "^3.4.1",
"jsdom": "^15.1.1",
"node-sass": "^4.12.0",
"postcss": "^7.0.17",
"prettier": "^1.18.2",
"pretty-hrtime": "^1.0.3",
"prop-types": "^15.7.2",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"rollup": "^1.17.0",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-commonjs": "^10.0.1",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-replace": "^2.2.0",
"rollup-plugin-terser": "^5.1.1",
"rollup-plugin-virtual": "^1.0.1",
"tape": "^4.11.0",
"wait-for-expect": "^2.0.0",
"yargs": "^14.0.0"
},
"dependencies": {
"lodash": "^4.17.15"
},
"keywords": [
"dropdown",
"ecosystem:jquery",
"ecosystem:react",
"form",
"input",
"jquery-plugin",
"multiselect",
"react",
"react-component",
"select",
"selectivity",
"submenu",
"tag",
"tagging",
"ui"
],
"license": "MIT",
"browserslist": [
"Explorer 10",
"Firefox ESR",
"Safari 6",
"last 2 Chrome versions",
"last 2 Firefox versions",
"last 4 iOS versions",
"last 5 Android versions"
],
"jest": {
"setupFilesAfterEnv": [
"jest-enzyme",
"<rootDir>/tests/jest-setup.js"
],
"testEnvironment": "enzyme"
}
}