-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
74 lines (74 loc) · 1.43 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "form-js",
"version": "4.2.1",
"description": "Create better ui form elements. Supports IE9+, all modern browsers, and mobile.",
"repository": {
"type": "git",
"url": "https://github.com/mkay581/form-js.git"
},
"author": {
"name": "Mark Kennedy",
"url": "http://heyimmark.com"
},
"license": "MIT",
"keywords": [
"forms",
"form",
"js form",
"ui-forms",
"checkbox",
"dropdown",
"select",
"input form",
"input field",
"form field",
"form button",
"form toggle",
"form submit",
"data binding",
"form changes",
"form elements",
"two way binding",
"formjs",
"react form",
"angular form",
"web form",
"form component"
],
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"main": "src/form.js",
"devDependencies": {
"build-tools": "^4.3.0",
"sinon": "^1.17.3"
},
"scripts": {
"build": "bt build",
"start": "bt server",
"test": "bt test"
},
"browserify": {
"transform": [
[
"babelify",
{
"presets": [
"es2015"
]
}
]
]
},
"dependencies": {
"babel-polyfill": "^6.7.4",
"babel-preset-es2015": "^6.6.0",
"babelify": "^7.3.0",
"browserify": "^13.0.1",
"core-js": "^2.4.0",
"device-manager": "^1.1.1",
"observe-js": "^0.4.2",
"promise": "^6.1.0",
"underscore": "^1.8.2"
}
}