-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
80 lines (80 loc) · 1.81 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
{
"name": "eventify",
"version": "2.0.1",
"description": "Lightweight module that can be mixed in to any object in order to provide it with custom events. For node.js and the browser. Based on Backbone.Events",
"author": "Bermi Ferrer <bermi@bermilabs.com>",
"url": "https://github.com/bermi/eventify",
"keywords": [
"event",
"eventify",
"events",
"browser",
"trigger",
"observer",
"bind",
"backbone",
"standalone",
"backbone-events",
"EventEmitter",
"ender"
],
"bugs": {
"url": "https://github.com/bermi/eventify/issues"
},
"licenses": [
{
"type": "MIT",
"url": "http://opensource.org/licenses/mit-license.php"
}
],
"repository": {
"type": "git",
"url": "git://github.com/bermi/eventify.git"
},
"engines": {
"node": ">= 0.6.x"
},
"dependencies": {},
"devDependencies": {
"blanket": "1.1.6",
"expect.js": "0.3.1",
"grunt": "0.4.5",
"grunt-cli": "0.1.13",
"grunt-contrib-concat": "0.5.0",
"grunt-contrib-jshint": "0.10.0",
"grunt-contrib-uglify": "0.6.0",
"grunt-contrib-watch": "0.6.1",
"grunt-release": "~0.11.0",
"load-grunt-tasks": "~3.1.0",
"mocha": "2.0.1",
"mocha-spec-cov": "0.0.3"
},
"scripts": {
"test": "make test"
},
"testling": {
"browsers": [
"iexplore/8..latest",
"firefox/17..latest",
"chrome/30..latest",
"opera/12..latest",
"safari/5..latest",
"iphone/6..latest",
"ipad/6..latest",
"android-browser/4.2..latest"
],
"harness": "mocha",
"files": "test/*.js"
},
"config": {
"blanket": {
"data-cover-only": "[./,./lib]",
"data-cover-never": "[./node_modules]"
}
},
"ender": "./lib/ender.js",
"main": "./lib/eventify.js",
"directories": {
"lib": "./lib"
}
}