-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
72 lines (72 loc) · 1.88 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
{
"name": "swipe-keyboard",
"version": "2.2.511",
"description": "Swipe keyboard module for simple-keyboard",
"main": "build/index.js",
"scripts": {
"build": "webpack",
"test": "jest",
"prepare": "npm run build",
"trypublish": "npm publish || true"
},
"repository": {
"type": "git",
"url": "https://github.com/hodgef/swipe-keyboard"
},
"author": "Francisco Hodge <[email protected]> (https://github.com/hodgef)",
"license": "MIT",
"bugs": {
"url": "https://github.com/hodgef/swipe-keyboard/issues"
},
"homepage": "https://virtual-keyboard.js.org/",
"keywords": [
"swipe-keyboard",
"swipe",
"swype",
"swype-keyboard",
"javascript",
"es6",
"digital",
"keyboard",
"onscreen",
"virtual",
"component",
"virtual-keyboard",
"touchscreen",
"touch-screen",
"layout",
"keyboard-layout"
],
"devDependencies": {
"@babel/cli": "^7.26.4",
"@babel/core": "^7.25.9",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/polyfill": "^7.12.1",
"@babel/preset-env": "^7.26.0",
"babel-loader": "^9.2.1",
"babel-preset-minify": "^0.5.2",
"css-loader": "^7.1.2",
"file-loader": "^6.2.0",
"jest": "^26.6.3",
"jest-canvas-mock": "^2.5.2",
"jest-environment-jsdom-fourteen": "^1.0.1",
"prettier": "^1.19.1",
"prettier-webpack-plugin": "^1.2.0",
"simple-keyboard": "3.8.30",
"style-loader": "^4.0.0",
"url-loader": "^4.1.1",
"webpack": "^5.97.1",
"webpack-cli": "^6.0.1"
},
"dependencies": {},
"jest": {
"testEnvironment": "jest-environment-jsdom-fourteen",
"setupFiles": [
"jest-canvas-mock"
],
"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"
}
}
}