-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
1814598
commit 2b46ea4
Showing
5 changed files
with
90 additions
and
36 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
{ | ||
"plugins": ["plugins/markdown"], | ||
"recurseDepth": 10, | ||
"source": { | ||
"include": ["src/autoComplete.js"] | ||
}, | ||
"sourceType": "module", | ||
"tags": { | ||
"allowUnknownTags": true, | ||
"dictionaries": ["jsdoc"] | ||
}, | ||
"templates": { | ||
"cleverLinks": false, | ||
"monospaceLinks": false | ||
}, | ||
"opts": { | ||
"template": "templates/default", | ||
"readme": "README.md", | ||
"package": "package.json", | ||
"encoding": "utf8", | ||
"destination": "./out", | ||
"recurse": true | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,33 +4,55 @@ | |
"description": "jQuery auto-complete plugin", | ||
"main": "src/js/index.js", | ||
"type": "module", | ||
"scripts": { | ||
"build": "mkdir -p dist && cp -r src/index.html src/files/ dist/ & npm run css & npm run js", | ||
"css": "node-sass ./src/sass/kompleter.scss ./dist/css/kompleter.min.css --output-style compressed", | ||
"js": "webpack", | ||
"cypress:open": "cypress open", | ||
"cypress:run": "cypress run --browser chrome ./cypress", | ||
"start": "webpack serve --hot" | ||
"author": { | ||
"name": "Steve Lebleu", | ||
"email": "[email protected]", | ||
"url": "https://www.konfer.be" | ||
}, | ||
"homepage": "https://github.com/steve-lebleu/kompletr", | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/steve-lebleu/kompleter.git" | ||
"url": "https://github.com/steve-lebleu/kompletr.git" | ||
}, | ||
"bugs": { | ||
"url": "https://github.com/steve-lebleu/kompletr/issues", | ||
"email": "[email protected]" | ||
}, | ||
"demo": "", | ||
"download": "", | ||
"directories": { | ||
"src": "src", | ||
"dist": "dist", | ||
"docs": "docs" | ||
}, | ||
"files": [ | ||
"dist", | ||
"src" | ||
], | ||
"browser": "dist/kompletr.min.js", | ||
"unpkg": "dist/kompletr.min.js", | ||
"module": "dist/kompletr.min.js", | ||
"keywords": [ | ||
"html", | ||
"html5", | ||
"css", | ||
"css3", | ||
"vanilla", | ||
"javascript", | ||
"jquery", | ||
"plugin", | ||
"auto-complete" | ||
"auto-complete", | ||
"auto-completion", | ||
"autocomplete", | ||
"autocompletion" | ||
], | ||
"author": "Steve Lebleu", | ||
"license": "ISC", | ||
"dependencies": { | ||
"jquery": "^3.7.1" | ||
"scripts": { | ||
"build": "mkdir -p dist && cp -r src/index.html src/files/ dist/ & npm run css & npm run js", | ||
"css": "node-sass ./src/sass/kompleter.scss ./dist/css/kompleter.min.css --output-style compressed", | ||
"js": "webpack", | ||
"cypress:open": "cypress open", | ||
"cypress:run": "cypress run --browser chrome ./cypress", | ||
"start": "webpack serve --hot" | ||
}, | ||
"devDependencies": { | ||
"@babel/runtime": "^7.23.6", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters