-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
71 lines (71 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
{
"name": "itsa-event",
"version": "1.1.2",
"description": "3-phased Event system for ultrafast, fexible events",
"author": [
{
"name": "Marco Asbreuk",
"email": "[email protected]"
}
],
"main": "index.js",
"keywords": [
"itsa",
"itsasbreuk",
"event",
"events",
"customevents",
"custom-events"
],
"repository": {
"type": "git",
"url": "https://github.com/itsa/itsa-event.git"
},
"bugs": {
"url": "https://github.com/itsa/itsa-event/issues"
},
"dependencies": {
"itsa-classes": "^1.0.3",
"itsa-jsext": "^1.3.0"
},
"devDependencies": {
"chai": "^1.9.1",
"istanbul": "^0.3.0",
"itsa-classes": "^1.0.2",
"jshint": "^2.5.5",
"mocha": "^1.21.4"
},
"directories": {
"extra": "./extra"
},
"testling": {
"harness": "mocha",
"files": "tests/*.js",
"browsers": [
"ie/6..latest",
"chrome/22..latest",
"firefox/16..latest",
"safari/latest",
"opera/11.0..latest",
"iphone/6",
"ipad/6",
"android-browser/latest"
]
},
"engines": {
"node": "*"
},
"scripts": {
"pretest": "jshint ./*.js",
"test": "mocha tests/*.js && istanbul cover $(which _mocha) -- tests/*.js",
"lint": "jshint ./*.js"
},
"homepage": "http://itsa.github.io",
"maintainers": [
{
"name": "Marco Asbreuk",
"email": "[email protected]"
}
],
"license": "New BSD"
}