-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
58 lines (58 loc) · 1.55 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
{
"name": "jquery.allowed-chars",
"title": "jQuery Allowed Chars - simple plugin",
"version": "1.0.4",
"description": "jQuery plugin to restrict users for typing only allowed chars for specified element",
"main": "dist/jquery.allowed-chars.js",
"repository": {
"type": "git",
"url": "https://github.com/fosco-maestro/jquery-allowed-chars-simple-plugin.git"
},
"keywords": [
"jquery",
"plugin",
"simple",
"allowed",
"chars",
"allowed chars",
"regular expression",
"regExp"
],
"author": {
"name": "Pavlo Voznenko",
"email": "[email protected]",
"url": "https://twitter.com/pvoznenko/"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/fosco-maestro/jquery-allowed-chars-simple-plugin/issues"
},
"homepage": "https://github.com/fosco-maestro/jquery-allowed-chars-simple-plugin",
"devDependencies": {
"grunt": "0.4.4",
"grunt-cli": "^0.1.13",
"grunt-contrib-jshint": "0.10.0",
"grunt-contrib-uglify": "0.4.0",
"grunt-karma": "0.8.3",
"jasmine-jquery": "git://github.com/quangv/node-jasmine-jquery.git#v1.3.3",
"jquery": "2.1.1",
"karma": "0.12.16",
"karma-chrome-launcher": "0.1.4",
"karma-jasmine": "0.1.5",
"karma-phantomjs-launcher": "0.1.4",
"phantomjs": "^1.9.7-8"
},
"npmName": "jquery.allowed-chars",
"npmFileMap": [
{
"basePath": "/dist/",
"files": [
"*.js"
]
}
],
"scripts": {
"build": "npm install && ./node_modules/.bin/grunt",
"test": "./node_modules/.bin/grunt test"
}
}