auto-complete-element/package.json

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

2018-04-11 22:47:25 +03:00
{
"name": "@github/auto-complete-element",
2019-07-29 12:51:36 +03:00
"version": "1.0.4",
2018-04-11 22:47:25 +03:00
"description": "Auto-complete input values from server results",
"repository": "github/auto-complete-element",
"main": "dist/index.umd.js",
"module": "dist/index.esm.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.js",
2018-04-11 22:47:25 +03:00
"prepublishOnly": "npm run build"
},
"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": {
"@github/combobox-nav": "^0.3.2"
},
2018-04-11 22:47:25 +03:00
"devDependencies": {
2019-07-04 17:09:21 +03:00
"@babel/core": "^7.5.0",
2019-04-10 19:22:26 +03:00
"babel-preset-github": "^3.2.0",
2019-01-08 00:03:03 +03:00
"chai": "^4.2.0",
"eslint": "^6.0.1",
"eslint-plugin-github": "^3.0.0",
"flow-bin": "^0.102.0",
2019-04-16 01:27:38 +03:00
"karma": "^4.1.0",
2018-04-11 22:55:40 +03:00
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^2.2.0",
"karma-mocha": "^1.3.0",
"karma-mocha-reporter": "^2.2.5",
2019-05-25 00:29:59 +03:00
"mocha": "^6.1.4",
2019-07-04 17:09:21 +03:00
"rollup": "^1.16.4",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-node-resolve": "^5.2.0"
},
"eslintIgnore": [
"dist/"
]
2018-04-11 22:47:25 +03:00
}