-
Notifications
You must be signed in to change notification settings - Fork 40
/
package.json
39 lines (39 loc) · 1.27 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
{
"name": "@kflorence/jquery-wizard",
"version": "1.1.3",
"title": "jQuery.wizard()",
"author": {
"name": "Kyle Florence",
"url": "https://github.com/kflorence/"
},
"licenses": [
{
"type": "MIT",
"url": "https://raw.github.com/kflorence/jquery-wizard/master/license-mit"
},
{
"type": "GPL-2.0",
"url": "https://raw.github.com/kflorence/jquery-wizard/master/license-gpl"
}
],
"dependencies": {
"jquery": ">=1.6.0",
"jquery-ui": ">=1.9.0"
},
"description": "Turns a standard HTML form into a form wizard by breaking it into a series of well-defined steps. The purpose of these steps is to better group related inputs, preventing the user from becoming overwhelmed at the size or complexity of a form and helping them to better understand the structure of an unfamiliar form.",
"keywords": [
"form",
"wizard",
"asynchronous",
"branching",
"steps",
"finite-state machine",
"transitions",
"stateful"
],
"demo": "http://kflorence.github.com/jquery-wizard/",
"homepage": "https://github.com/kflorence/jquery-wizard",
"files": [
"src/jquery.wizard.js"
]
}