-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
65 lines (65 loc) · 1.48 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
{
"name": "window-ext",
"version": "0.0.1",
"description": "Extentions to window",
"author": [
{
"name": "Marco Asbreuk",
"email": "[email protected]"
}
],
"repository": {
"type": "git",
"url": "https://github.com/itsa/window-ext"
},
"bugs": {
"url": "https://github.com/itsa/window-ext/issues"
},
"keywords": [
"itsa",
"window"
],
"main": "index.js",
"directories": {
"lib": "./lib"
},
"engines": {
"node": "*"
},
"dependencies": {
"js-ext": "itsa/js-ext"
},
"devDependencies": {
"chai": "^1.9.1",
"istanbul": "^0.3.0",
"jshint": "^2.5.5",
"mocha": "^1.21.4"
},
"scripts": {
"pretest": "jshint ./lib/*.js",
"test": "mocha tests/*.js && istanbul cover $(which _mocha) -- tests/*.js",
"lint": "jshint ./lib/*.js"
},
"homepage": "http://itsa.github.io",
"maintainers": [
{
"name": "Marco Asbreuk",
"email": "[email protected]"
}
],
"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"
]
},
"license": "New BSD"
}