-
Notifications
You must be signed in to change notification settings - Fork 507
/
package.json
49 lines (49 loc) · 1.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
{
"name": "jquery-maskmoney",
"filename": "jquery.maskMoney.min.js",
"description": "jQuery plugin to mask data entry in the input text in the form of money (currency)",
"version": "3.1.1",
"homepage": "https://github.com/plentz/jquery-maskmoney",
"repository": {
"type": "git",
"url": "https://github.com/plentz/jquery-maskmoney.git"
},
"bugs": "https://github.com/plentz/jquery-maskmoney/issues",
"author": {
"name": "Diego Plentz",
"email": "[email protected]",
"url": "http://plentz.org"
},
"dependencies": {
"jquery": "latest"
},
"engines": {
"node": ">=4"
},
"main": "dist/jquery.maskMoney.js",
"npmName": "jquery-maskmoney",
"npmFileMap": [
{
"basePath": "/dist/",
"files": [
"jquery.maskMoney.min.js"
]
}
],
"devDependencies": {
"amdefine": "latest",
"grunt": "latest",
"grunt-cli": "latest",
"grunt-contrib-concat": "latest",
"grunt-contrib-jshint": "latest",
"grunt-contrib-qunit": "latest",
"grunt-contrib-uglify": "latest",
"grunt-contrib-watch": "latest",
"grunt-jquerymanifest": "latest"
},
"license": "MIT",
"scripts": {
"test": "grunt test --verbose",
"build": "grunt"
}
}