forked from Mottie/Keyboard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 1.56 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
{
"name": "virtual-keyboard",
"title": "Keyboard",
"description": "Virtual Keyboard using jQuery UI",
"version": "1.30.2",
"author": {
"name": "Jeremy Satterfield",
"url": "https://github.com/jsatt"
},
"maintainers": [
{
"name": "Rob Garrison",
"url": "https://github.com/Mottie",
"email": "wowmotty@gmail.com"
}
],
"license": "MIT",
"dependencies": {
"jquery": ">=3.3.1"
},
"optionalDependencies": {
"jquery-ui": ">=1.12.1"
},
"keywords": [
"customizable",
"keyboard",
"ui",
"accessibility",
"osk",
"jquery-plugin"
],
"homepage": "https://github.com/Mottie/Keyboard",
"demo": "http://mottie.github.io/Keyboard/",
"docs": "https://github.com/Mottie/Keyboard/wiki",
"bugs": "https://github.com/Mottie/Keyboard/issues",
"main": "dist/js/jquery.keyboard.js",
"files": [
"dist/**/*"
],
"repository": {
"type": "git",
"url": "git://github.com/Mottie/keyboard.git"
},
"scripts": {
"authors": "bash tools/authors.sh",
"lint": "eslint *.js || true"
},
"npmName": "virtual-keyboard",
"npmFileMap": [
{
"basePath": "dist",
"files": [
"**/*"
]
}
],
"devDependencies": {
"grunt": "^1.0.3",
"grunt-cli": "^1.3.2",
"grunt-contrib-clean": "^2.0.0",
"grunt-contrib-concat": "^1.0.1",
"grunt-contrib-copy": "^1.0.0",
"grunt-contrib-cssmin": "^3.0.0",
"grunt-contrib-jshint": "^2.0.0",
"grunt-contrib-qunit": "^3.1.0",
"grunt-contrib-uglify": "^4.0.0",
"grunt-contrib-watch": "^1.1.0"
}
}