forked from bbbales2/ampersand-select-view
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 1.92 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
{
"name": "ampersand-select-view",
"description": "A view module for intelligently rendering and validating selectbox input. Works well with ampersand-form-view.",
"version": "2.3.0",
"author": "Philip Roberts <[email protected]>",
"bugs": {
"url": "https://github.com/AmpersandJS/ampersand-select-view/issues"
},
"dependencies": {
"ampersand-dom": "^1.1.0",
"ampersand-version": "^1.0.1",
"domify": "^1.2.2",
"matches-selector": "^1.0.0",
"zuul": "^1.16.4"
},
"devDependencies": {
"ampersand-collection": "^1.3.1",
"ampersand-form-view": "^0.2.2",
"ampersand-state": "^4.2.3",
"ampersand-view-conventions": "^1.1.1",
"browserify": "^5.10.1",
"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",
"tape-suite": "^0.2.0",
"zuul": "^1.13.1"
},
"directories": {
"test": "test"
},
"homepage": "https://github.com/AmpersandJS/ampersand-select-view",
"keywords": [
"ampersand",
"form",
"view",
"select"
],
"license": "MIT",
"main": "ampersand-select-view.js",
"repository": {
"type": "git",
"url": "https://github.com/AmpersandJS/ampersand-select-view.git"
},
"scripts": {
"test": "zuul --phantom -- test/index.js",
"test-ci": "zuul -- test/index.js",
"start": "run-browser test/*",
"demo": "beefy demo/demo.js:demo.js --cwd demo"
},
"testling": {
"files": "test/*.js",
"browsers": [
"ie/8..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"
]
},
"browserify": {
"transform": [
"ampersand-version"
]
}
}