This repository has been archived by the owner on Jan 8, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
75 lines (75 loc) · 2.19 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
{
"name": "select-madu",
"consName": "SelectMadu",
"version": "2.2.0",
"description": "Select-madu is a replacement for the select menu, with support for searching, multiple selections, async loading, animations and more.",
"main": "nodesrc/index.js",
"module": "nodesrc/index.mjs",
"svelte": "nodesrc/index.js",
"scripts": {
"build:css": "sass --no-source-map styles/main.scss dist/selectmadu.css",
"bundle": "cross-env BUILD=production rollup -c",
"build": "npm run bundle && npm run build:css",
"lint": "cross-env BUILD=production eslint .",
"lint:style": "npx stylelint \"styles/*.scss\"",
"test": "echo \"No test specified\" && exit 0",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pavish/select-madu.git"
},
"keywords": [
"select",
"selectmenu",
"svelte",
"autocomplete",
"dropdown",
"multiselect",
"tag",
"tagging",
"typeahead"
],
"author": "Pavish Kumar Ramani Gopal <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/pavish/select-madu/issues"
},
"homepage": "https://github.com/pavish/select-madu#readme",
"devDependencies": {
"@rollup/plugin-node-resolve": "^9.0.0",
"@rollup/plugin-typescript": "^6.1.0",
"@tsconfig/svelte": "^1.0.10",
"@typescript-eslint/eslint-plugin": "^4.15.2",
"@typescript-eslint/parser": "^4.15.2",
"cross-env": "^7.0.3",
"eslint": "^7.20.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-promise": "^4.3.1",
"eslint-plugin-svelte3": "^3.1.1",
"npm-run-all": "^4.1.5",
"rollup": "^2.39.1",
"rollup-plugin-svelte": "^6.1.1",
"rollup-plugin-terser": "^7.0.2",
"sass": "^1.32.8",
"stylelint": "^13.12.0",
"stylelint-config-standard": "^21.0.0",
"stylelint-scss": "^3.19.0",
"svelte": "^3.32.3",
"svelte-check": "^1.1.35",
"svelte-preprocess": "^4.6.9",
"tslib": "^2.1.0",
"typescript": "^4.0.6"
},
"files": [
"src",
"styles",
"nodesrc",
"dist"
],
"dependencies": {
"@popperjs/core": "^2.9.1"
}
}