-
Notifications
You must be signed in to change notification settings - Fork 351
/
package.json
34 lines (34 loc) · 864 Bytes
/
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
{
"name": "form-serializer",
"version": "2.5.0",
"description": "serialize form fields into an object or JSON",
"main": "./jquery.serialize-object.js",
"scripts": {
"test": "npm run build && open ./test/test.html",
"build": "npm run minify",
"minify": "uglifyjs jquery.serialize-object.js -m -c --comments > dist/jquery.serialize-object.min.js"
},
"repository": {
"type": "git",
"url": "https://github.com/macek/jquery-serialize-object"
},
"keywords": [
"form",
"serialize",
"json",
"object",
"jquery-plugin"
],
"plugin": {
"type": "jQuery",
"name": "jQuery serializeObject"
},
"author": "macek <[email protected]>",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/macek/jquery-serialize-object/issues"
},
"devDependencies": {
"uglify-js": "^2.4.16"
}
}