mirror of
https://github.com/hodgef/simple-keyboard.git
synced 2025-01-19 16:52:59 +08:00
fd73f0e93c
Bumps [@babel/core](https://github.com/babel/babel/tree/HEAD/packages/babel-core) from 7.22.19 to 7.22.20. - [Release notes](https://github.com/babel/babel/releases) - [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md) - [Commits](https://github.com/babel/babel/commits/v7.22.20/packages/babel-core) --- updated-dependencies: - dependency-name: "@babel/core" dependency-type: direct:development update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com>
115 lines
3.1 KiB
JSON
115 lines
3.1 KiB
JSON
{
|
|
"name": "simple-keyboard",
|
|
"version": "3.7.11",
|
|
"description": "On-screen Javascript Virtual Keyboard",
|
|
"main": "build/index.js",
|
|
"scripts": {
|
|
"start": "webpack serve --config webpack.config.demo.js",
|
|
"build": "webpack && npm run build-modern && npm run build-modern-esm && tsc",
|
|
"build-modern": "webpack --config webpack.config.modern.js",
|
|
"build-modern-esm": "webpack --config webpack.config.modern_esm.js",
|
|
"test": "jest --silent",
|
|
"coverage": "npm run test -- --coverage",
|
|
"prepare": "npm run build",
|
|
"trypublish": "npm publish || true"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/hodgef/simple-keyboard"
|
|
},
|
|
"author": "Francisco Hodge <hello@franciscohodge.com> (https://github.com/hodgef)",
|
|
"bugs": {
|
|
"url": "https://github.com/hodgef/simple-keyboard/issues"
|
|
},
|
|
"homepage": "https://virtual-keyboard.js.org/",
|
|
"keywords": [
|
|
"javascript",
|
|
"es6",
|
|
"digital",
|
|
"keyboard",
|
|
"onscreen",
|
|
"virtual",
|
|
"screen-keyboard",
|
|
"component",
|
|
"virtual-keyboard",
|
|
"touchscreen",
|
|
"touch-screen",
|
|
"kiosk",
|
|
"osk",
|
|
"js"
|
|
],
|
|
"license": "MIT",
|
|
"devDependencies": {
|
|
"@babel/cli": "^7.22.15",
|
|
"@babel/core": "^7.22.20",
|
|
"@babel/plugin-proposal-class-properties": "^7.17.12",
|
|
"@babel/plugin-transform-typescript": "^7.22.15",
|
|
"@babel/polyfill": "^7.12.1",
|
|
"@babel/preset-env": "^7.22.15",
|
|
"@types/jest": "^27.5.0",
|
|
"@typescript-eslint/eslint-plugin": "^5.60.1",
|
|
"@typescript-eslint/parser": "^5.62.0",
|
|
"autoprefixer": "^10.4.15",
|
|
"babel-eslint": "^10.1.0",
|
|
"babel-loader": "^9.1.3",
|
|
"babel-preset-minify": "^0.5.2",
|
|
"core-js": "^3.32.2",
|
|
"css-loader": "^6.8.1",
|
|
"css-minimizer-webpack-plugin": "^5.0.1",
|
|
"eslint": "^8.49.0",
|
|
"file-loader": "^6.2.0",
|
|
"html-webpack-plugin": "^5.5.3",
|
|
"jest": "^26.6.3",
|
|
"mini-css-extract-plugin": "^2.7.6",
|
|
"postcss": "^8.4.29",
|
|
"postcss-loader": "^7.3.3",
|
|
"style-loader": "^3.3.3",
|
|
"terser-webpack-plugin": "^5.3.9",
|
|
"typescript": "^4.9.5",
|
|
"url-loader": "^4.1.1",
|
|
"webpack": "^5.88.2",
|
|
"webpack-cli": "^5.1.3",
|
|
"webpack-dev-server": "4.15.0"
|
|
},
|
|
"jest": {
|
|
"roots": [
|
|
"<rootDir>/src"
|
|
],
|
|
"collectCoverageFrom": [
|
|
"src/**/*.{js,jsx,ts,tsx}",
|
|
"!src/**/*.d.ts",
|
|
"!src/lib/index.js",
|
|
"!src/lib/polyfills.js",
|
|
"!src/demo/**",
|
|
"!src/utils/**",
|
|
"!src/**/*.d.ts",
|
|
"!**/tests/**"
|
|
],
|
|
"testMatch": [
|
|
"<rootDir>/src/**/__tests__/**/*.{js,jsx,ts,tsx}",
|
|
"<rootDir>/src/**/*.{spec,test}.{js,jsx,ts,tsx}"
|
|
],
|
|
"transformIgnorePatterns": [
|
|
"[/\\\\]node_modules[/\\\\].+\\.(js|jsx|ts|tsx)$",
|
|
"^.+\\.module\\.(css|sass|scss)$"
|
|
],
|
|
"modulePaths": [],
|
|
"moduleNameMapper": {
|
|
"\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/scripts/testMock.js",
|
|
"\\.(css|less)$": "<rootDir>/scripts/testMock.js"
|
|
},
|
|
"moduleFileExtensions": [
|
|
"web.js",
|
|
"js",
|
|
"web.ts",
|
|
"ts",
|
|
"web.tsx",
|
|
"tsx",
|
|
"json",
|
|
"web.jsx",
|
|
"jsx",
|
|
"node"
|
|
]
|
|
}
|
|
}
|