-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.35 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.35 KB
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
{
"name": "scrollmonitor",
"version": "1.0.12",
"author": "Stu Kabakoff <stukabakoff@gmail.com>",
"description": "A simple and fast API to monitor DOM elements as you scroll",
"contributors": [
{
"name": "Stu Kabakoff",
"email": "stukabakoff@gmail.com"
},
{
"name": "Terrence Lee",
"email": "mr.lee@terrenceishere.com"
},
{
"name": "Roman Kalyakin",
"email": "roman@kalyakin.com"
}
],
"repository": {
"type": "git",
"url": "https://github.com/sakabako/scrollMonitor.git"
},
"keywords": [
"scroll",
"dom"
],
"license": "MIT",
"main": "./scrollMonitor.js",
"dependencies": {},
"devDependencies": {
"karma": "^0.12.24",
"karma-chai": "^0.1.0",
"karma-expect": "^1.1.0",
"karma-firefox-launcher": "^0.1.3",
"karma-ie-launcher": "^0.1.5",
"karma-ios-launcher": "0.0.3",
"karma-mocha": "^0.1.9",
"karma-sinon-ie": "^1.0.1",
"browser-launcher": "^1.0.0",
"chai": "~1.8.1",
"mocha": "~1.14.0",
"sinon": "~1.7.3",
"sinon-chai": "~2.4.0",
"testem": "~0.6.15"
},
"testling": {
"browsers": [
"ie6..latest",
"firefox/latest",
"chrome/latest",
"opera/latest",
"safari/latest"
],
"harness": "mocha",
"files": [
"testling.js"
]
},
"spm": {
"main": "scrollMonitor.js"
}
}