auto-complete-element/package.json

54 строки
1.5 KiB
JSON
Исходник Обычный вид История

2018-04-11 22:47:25 +03:00
{
"name": "@github/auto-complete-element",
2020-04-30 21:40:22 +03:00
"version": "3.0.0",
2018-04-11 22:47:25 +03:00
"description": "Auto-complete input values from server results",
"repository": "github/auto-complete-element",
"type": "module",
"main": "dist/index.js",
"module": "dist/index.js",
2019-07-25 14:13:58 +03:00
"types": "index.d.ts",
2018-04-11 22:47:25 +03:00
"scripts": {
"clean": "rm -rf dist",
2019-02-22 13:24:56 +03:00
"lint": "github-lint",
2018-04-11 22:47:25 +03:00
"prebuild": "npm run clean && npm run lint",
"build": "rollup -c && cp src/index.js.flow dist/index.esm.js.flow && cp src/index.js.flow dist/index.umd.js.flow",
2018-04-11 22:55:40 +03:00
"pretest": "npm run build",
"test": "karma start test/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
},
"prettier": "@github/prettier-config",
2018-04-11 22:47:25 +03:00
"keywords": [
"auto-complete"
],
"license": "MIT",
"files": [
2019-07-25 14:13:58 +03:00
"dist",
"index.d.ts"
2018-04-11 22:47:25 +03:00
],
"dependencies": {
2020-05-12 19:29:09 +03:00
"@github/combobox-nav": "^2.0.2"
},
2018-04-11 22:47:25 +03:00
"devDependencies": {
2019-11-06 01:42:08 +03:00
"@babel/core": "^7.7.0",
"@github/prettier-config": "0.0.4",
2019-09-20 18:42:10 +03:00
"babel-preset-github": "^3.2.1",
2019-01-08 00:03:03 +03:00
"chai": "^4.2.0",
2019-11-06 01:42:08 +03:00
"eslint": "^6.6.0",
"eslint-plugin-github": "^3.2.1",
"flow-bin": "^0.111.1",
2020-04-30 19:56:10 +03:00
"karma": "^5.0.4",
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",
2020-04-30 19:56:10 +03:00
"mocha": "^7.1.2",
2019-11-06 01:42:08 +03:00
"rollup": "^1.26.3",
2019-07-04 17:09:21 +03:00
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-node-resolve": "^5.2.0"
},
"eslintIgnore": [
"dist/"
]
2018-04-11 22:47:25 +03:00
}