-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
55 lines (55 loc) · 975 Bytes
/
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
{
"name": "backbacon",
"description": "Get bacon.js event streams from Backbone models",
"version": "0.1.1",
"repository": {
"url": "git://github.com/jwalgran/backbacon.git"
},
"main": "index.js",
"scripts": {
"test": "node test.js"
},
"dependencies": {
"backbone": "~0.9.10",
"baconjs": "~0.1.7"
},
"devDependencies": {
"tap": "~0.4.0",
"tape": "~0.2.2",
"grunt": "~0.4.0",
"grunt-contrib-clean": "~0.4.0",
"grunt-contrib-copy": "~0.4.0",
"grunt-contrib-jshint": "~0.2.0",
"grunt-contrib-uglify": "~0.1.2",
"browserify": "~2.4.0"
},
"license": "MIT",
"testling": {
"files": "test.js",
"browsers": {
"ie": [
7,
8,
9
],
"firefox": [
13
],
"chrome": [
20
],
"safari": [
5.1
],
"opera": [
12
],
"iphone": [
6
],
"ipad": [
6
]
}
}
}