-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 875 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 875 Bytes
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
{
"name": "form-storage-submitter",
"version": "0.90.1",
"description": "Small library for HTML forms serializing, autosaving, storing them in localStorage and autoclearing after AJAX submit.",
"keywords": [
"javascript",
"html",
"form",
"forms",
"serialization",
"autosave"
],
"homepage": "https://github.com/XXXXPro/FormSerializer#readme",
"bugs": {
"url": "https://github.com/XXXXPro/FormSerializer/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/XXXXPro/FormSerializer.git"
},
"scripts": {
"build": "uglifyjs src/form-storage.js > dist/form-storage.min.js",
"prepublishOnly": "npm run build"
},
"license": "MIT",
"author": "4X_Pro",
"type": "commonjs",
"main": "dist/form-storage.min.js",
"directories": {
"example": "examples"
},
"files" : [
"dist"
]
}