-
-
Notifications
You must be signed in to change notification settings - Fork 82
/
package.json
114 lines (114 loc) · 3.21 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "simple-keyboard-layouts",
"version": "3.4.39",
"description": "Layouts module for simple-keyboard",
"main": "build/index.js",
"scripts": {
"start": "webpack serve --config webpack.config.demo.js",
"build": "webpack && npm run build-esm && tsc && npm run buildLayouts && npm run buildLayoutsNode",
"build-esm": "webpack --config webpack.config.build_esm.js",
"buildLayouts": "tsc --p tsconfig.layouts.json",
"buildLayoutsNode": "tsc --p tsconfig.layouts.cjs.json",
"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-layouts"
},
"author": "Francisco Hodge <hello@franciscohodge.com> (https://github.com/hodgef)",
"bugs": {
"url": "https://github.com/hodgef/simple-keyboard-layouts/issues"
},
"homepage": "https://hodgef.com/simple-keyboard/modules/simple-keyboard-layouts/",
"keywords": [
"javascript",
"es6",
"digital",
"keyboard",
"onscreen",
"virtual",
"screen-keyboard",
"component",
"virtual-keyboard",
"touchscreen",
"touch-screen",
"layout",
"keyboard-layout",
"kiosk",
"osk",
"js"
],
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.25.9",
"@babel/core": "^7.26.0",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-transform-typescript": "^7.25.9",
"@babel/polyfill": "^7.12.1",
"@babel/preset-env": "^7.26.0",
"@types/jest": "^27.5.0",
"@typescript-eslint/eslint-plugin": "^4.31.2",
"@typescript-eslint/parser": "^4.33.0",
"babel-eslint": "^10.1.0",
"babel-loader": "^9.2.1",
"babel-preset-minify": "^0.5.2",
"css-loader": "^7.1.2",
"css-minimizer-webpack-plugin": "^7.0.0",
"eslint": "^7.32.0",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.6.3",
"jest": "^26.6.3",
"mini-css-extract-plugin": "^2.8.1",
"simple-keyboard": "3.8.14",
"style-loader": "^4.0.0",
"terser-webpack-plugin": "^5.3.10",
"typescript": "^5.6.3",
"uglify-es": "^3.3.9",
"url-loader": "^4.1.1",
"webpack": "^5.96.1",
"webpack-cli": "^5.1.3",
"webpack-dev-server": "4.13.1"
},
"jest": {
"roots": [
"<rootDir>/src"
],
"collectCoverageFrom": [
"src/**/*.{js,jsx,ts,tsx}",
"!src/**/*.d.ts",
"!src/lib/index.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"
]
}
}