2018-04-11 22:47:25 +03:00
|
|
|
{
|
2018-04-12 23:37:58 +03:00
|
|
|
"name": "@github/auto-complete-element",
|
2022-05-17 22:53:14 +03:00
|
|
|
"version": "3.2.2",
|
2018-04-11 22:47:25 +03:00
|
|
|
"description": "Auto-complete input values from server results",
|
|
|
|
"repository": "github/auto-complete-element",
|
2020-04-29 20:00:53 +03:00
|
|
|
"type": "module",
|
|
|
|
"main": "dist/index.js",
|
|
|
|
"module": "dist/index.js",
|
2020-05-21 01:24:33 +03:00
|
|
|
"types": "dist/index.d.ts",
|
2018-04-11 22:47:25 +03:00
|
|
|
"scripts": {
|
|
|
|
"clean": "rm -rf dist",
|
2021-11-12 18:21:22 +03:00
|
|
|
"example": "http-server -c-1 ./examples",
|
|
|
|
"preexample": "mkdir -p ./examples/dist && npm run build && cp ./dist/bundle.js ./examples/dist/bundle.js",
|
2020-06-04 19:15:20 +03:00
|
|
|
"lint": "eslint . --ext .ts,.js && tsc --noEmit",
|
|
|
|
"prebuild": "npm run clean && npm run lint",
|
|
|
|
"build": "tsc && rollup -c",
|
2018-04-11 22:55:40 +03:00
|
|
|
"pretest": "npm run build",
|
2022-02-24 16:06:52 +03:00
|
|
|
"test": "karma start karma.config.cjs",
|
2019-08-08 13:24:41 +03:00
|
|
|
"prepublishOnly": "npm run build",
|
|
|
|
"postpublish": "npm publish --ignore-scripts --@github:registry='https://npm.pkg.github.com'"
|
2018-04-11 22:47:25 +03:00
|
|
|
},
|
2020-04-29 19:30:58 +03:00
|
|
|
"prettier": "@github/prettier-config",
|
2018-04-11 22:47:25 +03:00
|
|
|
"keywords": [
|
|
|
|
"auto-complete"
|
|
|
|
],
|
|
|
|
"license": "MIT",
|
|
|
|
"files": [
|
2022-02-24 21:39:53 +03:00
|
|
|
"dist",
|
|
|
|
"validator.js"
|
2018-04-11 22:47:25 +03:00
|
|
|
],
|
2019-02-20 20:51:52 +03:00
|
|
|
"dependencies": {
|
2020-05-12 19:29:09 +03:00
|
|
|
"@github/combobox-nav": "^2.0.2"
|
2019-02-20 20:51:52 +03:00
|
|
|
},
|
2018-04-11 22:47:25 +03:00
|
|
|
"devDependencies": {
|
2020-04-29 19:30:58 +03:00
|
|
|
"@github/prettier-config": "0.0.4",
|
2022-02-24 22:14:05 +03:00
|
|
|
"axe-core": "^4.4.1",
|
2022-02-24 16:06:52 +03:00
|
|
|
"chai": "^4.3.6",
|
2022-02-24 22:14:05 +03:00
|
|
|
"eslint": "^8.9.0",
|
|
|
|
"eslint-plugin-custom-elements": "^0.0.4",
|
|
|
|
"eslint-plugin-github": "^4.3.5",
|
|
|
|
"http-server": "^14.1.0",
|
|
|
|
"karma": "^6.3.16",
|
2018-04-11 22:55:40 +03:00
|
|
|
"karma-chai": "^0.1.0",
|
2019-09-20 18:42:10 +03:00
|
|
|
"karma-chrome-launcher": "^3.1.0",
|
2020-04-30 19:56:10 +03:00
|
|
|
"karma-mocha": "^2.0.1",
|
2018-04-11 22:55:40 +03:00
|
|
|
"karma-mocha-reporter": "^2.2.5",
|
2022-02-24 22:14:05 +03:00
|
|
|
"mocha": "^9.2.1",
|
|
|
|
"rollup": "^2.68.0",
|
2020-05-21 01:24:33 +03:00
|
|
|
"rollup-plugin-node-resolve": "^5.2.0",
|
2022-02-24 22:14:05 +03:00
|
|
|
"typescript": "^4.5.5"
|
2021-11-12 18:21:22 +03:00
|
|
|
}
|
2018-04-11 22:47:25 +03:00
|
|
|
}
|