-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
90 lines (90 loc) · 2.46 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
{
"name": "virtual-keyboard-plugin",
"version": "1.2.1",
"scripts": {
"dev": "webpack --mode development --watch",
"build": "webpack --mode production",
"test": "karma start",
"report-coverage": "codecov"
},
"description": "Simple Virtual keyboard plugin for web applications , based on HTML, javascript and CSS",
"keywords": [
"keyboard",
"virtual-keyboard",
"plugin",
"input",
"textarea",
"javascript"
],
"engines": {
"node": ">=7.8.0"
},
"main": "dist/virtual-keyboard.js",
"files": [
"dist"
],
"unpkg": "dist/virtual-keyboard.min.js",
"author": "stephen31",
"license": "MIT",
"private": false,
"repository": {
"type": "git",
"url": "git+https://github.com/stephen31/virtual-keyboard-plugin"
},
"bugs": {
"url": "https://github.com/stephen31/virtual-keyboard-plugin/issues"
},
"quokka": {
"babel": true
},
"dependencies": {
"core-js": "^2.5.6",
"font-awesome": "^4.7.0",
"npm": "^5.7.1"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.4",
"babel-plugin-istanbul": "^4.1.5",
"babel-preset-env": "^1.6.1",
"babel-preset-es2015": "^6.24.1",
"babelify": "^8.0.0",
"browserify": "^16.1.1",
"browserify-babel-istanbul": "^0.4.0",
"browserify-istanbul": "^3.0.1",
"codecov": "^3.0.0",
"copy-webpack-plugin": "^4.5.0",
"eslint": "^4.18.2",
"eslint-config-airbnb": "^16.1.0",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.9.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.7.0",
"isparta": "^4.0.0",
"istanbul": "^0.4.5",
"istanbul-instrumenter-loader": "^3.0.0",
"jasmine": "^3.1.0",
"karma": "^2.0.0",
"karma-babel-preprocessor": "^7.0.0",
"karma-browserify": "^5.2.0",
"karma-chrome-launcher": "^2.2.0",
"karma-coverage": "^1.1.1",
"karma-coverage-istanbul-reporter": "^1.4.2",
"karma-es6-shim": "^1.0.0",
"karma-firefox-launcher": "^1.1.0",
"karma-ie-launcher": "^1.0.0",
"karma-jasmine": "^1.1.1",
"karma-jasmine-diff-reporter": "^1.1.1",
"karma-phantomjs-launcher": "^1.0.4",
"karma-requirejs": "^1.1.0",
"karma-safari-launcher": "^1.0.0",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^2.0.13",
"puppeteer": "^1.1.1",
"requirejs": "^2.3.5",
"uglifyjs-webpack-plugin": "^1.2.2",
"watchify": "^3.11.0",
"webpack": "^4.1.1",
"webpack-cli": "^2.0.10"
}
}