forked from stutrek/scrollmonitor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.28 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
{
"name": "scrollmonitor",
"version": "1.2.11",
"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/stutrek/scrollMonitor.git"
},
"keywords": [
"scroll",
"dom"
],
"scripts": {
"test": "tsc testEntry.ts --outDir ./testOutput --module es6 && testem ci",
"start": "tsc testEntry.ts --outDir ./testOutput --module es6 && testem",
"build": "rm -rf dist; tsc; tsc --outDir ./dist/module --module es6"
},
"license": "MIT",
"main": "./dist/umd/index.js",
"module": "./dist/module/index.js",
"dependencies": {},
"devDependencies": {
"prettier": "^2.4.1",
"sinon": "^1.17.6",
"testem": "github:stutrek/testem",
"typescript": "^4.4.4"
},
"spm": {
"main": "scrollMonitor.js"
}
}