mirror of
https://github.com/hodgef/simple-keyboard.git
synced 2025-01-19 16:52:59 +08:00
116 lines
3.1 KiB
JSON
116 lines
3.1 KiB
JSON
{
|
|
"name": "simple-keyboard",
|
|
"version": "3.1.39",
|
|
"description": "On-screen Javascript Virtual Keyboard",
|
|
"main": "build/index.js",
|
|
"types": "build/types/index.d.ts",
|
|
"scripts": {
|
|
"start": "webpack serve --config webpack.config.demo.js",
|
|
"build": "webpack && tsc",
|
|
"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.14.5",
|
|
"@babel/core": "^7.14.5",
|
|
"@babel/plugin-proposal-class-properties": "^7.14.5",
|
|
"@babel/plugin-transform-typescript": "^7.14.6",
|
|
"@babel/polyfill": "^7.12.1",
|
|
"@babel/preset-env": "^7.14.5",
|
|
"@types/jest": "^26.0.23",
|
|
"@typescript-eslint/eslint-plugin": "^4.27.0",
|
|
"@typescript-eslint/parser": "^4.26.1",
|
|
"autoprefixer": "^10.2.6",
|
|
"babel-eslint": "^10.1.0",
|
|
"babel-loader": "^8.2.2",
|
|
"babel-preset-minify": "^0.5.0",
|
|
"core-js": "^3.14.0",
|
|
"css-loader": "^5.2.6",
|
|
"eslint": "^7.28.0",
|
|
"file-loader": "^6.2.0",
|
|
"html-webpack-plugin": "^5.3.1",
|
|
"jest": "^26.6.3",
|
|
"mini-css-extract-plugin": "^1.6.0",
|
|
"optimize-css-assets-webpack-plugin": "^6.0.0",
|
|
"postcss": "^8.3.4",
|
|
"postcss-loader": "^6.1.0",
|
|
"prettier": "^2.3.1",
|
|
"prettier-webpack-plugin": "^1.2.0",
|
|
"style-loader": "^2.0.0",
|
|
"terser-webpack-plugin": "^5.1.3",
|
|
"typescript": "^4.3.2",
|
|
"url-loader": "^4.1.1",
|
|
"webpack": "^5.39.0",
|
|
"webpack-cli": "^4.7.2",
|
|
"webpack-dev-server": "4.0.0-beta.3"
|
|
},
|
|
"jest": {
|
|
"roots": [
|
|
"<rootDir>/src"
|
|
],
|
|
"collectCoverageFrom": [
|
|
"src/**/*.{js,jsx,ts,tsx}",
|
|
"!src/**/*.d.ts",
|
|
"!src/lib/index.js",
|
|
"!src/lib/polyfills.js",
|
|
"!src/demo/index.js",
|
|
"!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"
|
|
]
|
|
}
|
|
}
|