This repository has been archived by the owner on Jul 7, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
87 lines (87 loc) · 2.08 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
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "ampersand-chosen-view",
"description": "Making long, unwieldy select boxes more friendly on AmpresandJS using Chosen.",
"version": "0.0.1",
"author": "Francisco Dias <[email protected]>",
"browserify": {
"transform": [
"browserify-shim",
"ampersand-version"
]
},
"bugs": {
"url": "https://github.com/xicombd/ampersand-chosen-view/issues"
},
"browser": {
"jquery": "./vendor/jquery-2.1.3.js",
"chosen": "./vendor/chosen.jquery.js"
},
"browserify-shim": {
"jquery": "$",
"chosen": {
"depends": [
"jquery"
]
}
},
"dependencies": {
"amp-clone": "^1.0.1",
"ampersand-dom": "^1.2.7",
"ampersand-form-view": "^2.2.0",
"ampersand-version": "^1.0.0",
"ampersand-view": "^7.0.0",
"browserify-shim": "^3.8.2",
"domify": "^1.3.1",
"matches-selector": "^1.0.0",
"underscore": "^1.7.0"
},
"devDependencies": {
"ampersand-view-conventions": "^1.1.1",
"beefy": "^2.0.2",
"browserify": "~4.1.10",
"browserify-css": "^0.2.0",
"function-bind": "~0.1.0",
"jshint": "~2.5.1",
"phantomjs": "^1.9.7-15",
"precommit-hook": "~1.0.2",
"run-browser": "~1.3.1",
"tap-spec": "~0.2.0",
"tape": "~2.13.3",
"tape-run": "~0.1.1"
},
"homepage": "https://github.com/xicombd/ampersand-chosen-view",
"keywords": [
"forms",
"ampersand",
"browser",
"chosen",
"select"
],
"license": "MIT",
"main": "ampersand-chosen-view.js",
"repository": {
"type": "git",
"url": "git://github.com/sinfo/ampersand-chosen-view"
},
"scripts": {
"test": "echo 'No test specified' && exit 0",
"start": "run-browser test/*",
"demo": "beefy demo.js -- -t browserify-css"
},
"testling": {
"files": "test/*.js",
"browsers": [
"ie/9..latest",
"firefox/17..latest",
"firefox/nightly",
"chrome/22..latest",
"chrome/canary",
"opera/12..latest",
"opera/next",
"safari/5.1..latest",
"ipad/6.0..latest",
"iphone/6.0..latest",
"android-browser/4.2..latest"
]
}
}