-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
28 lines (28 loc) · 867 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
{
"name": "form-to-obj",
"version": "0.0.3",
"description": "Zero dependency helper to serialize a form into a JavaScript object",
"main": "form-to-obj.js",
"directories": {},
"scripts": {
"test": "jasmine-node test/*.spec.js",
"min": "uglifyjs form-to-obj.js --source-map form-to-obj.min.js.map -m -c -o form-to-obj.min.js && echo 'Minified size' && cat form-to-obj.min.js | gzip -9f | wc -c"
},
"repository": {
"type": "git",
"url": "https://github.com/chrisdavies/form-to-obj"
},
"keywords": [
"forms", "serializing"
],
"author": "Chris Davies <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/chrisdavies/form-to-obj/issues"
},
"homepage": "https://github.com/chrisdavies/form-to-obj",
"devDependencies": {
"jasmine-node": "^1.14.5",
"uglify-js": "^2.4.23"
}
}