-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
63 lines (63 loc) · 1.75 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
{
"name": "@egstad/detect-scroll",
"version": "1.0.10",
"description": "A performant and lightweight ES6 module for detecting scroll activity (direction + location) for X and/or Y axis",
"main": "index.js",
"scripts": {
"start": "parcel ./example/index.html",
"test": "jest --watchAll",
"test:coverage": "jest --coverage",
"test:badges": "npm run test:coverage && jest-coverage-badges",
"prepublish": "npm run test:badges; npm run build",
"build": "npm run build:example",
"build:example": "parcel build ./example/index.html --public-url='./' --out-dir ./docs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/egstad-construct/detect-scroll.git"
},
"keywords": [
"Custom Scroll Event Listeners",
"Scroll Direction",
"Scroll Events",
"Scroll",
"Event",
"Custom Event",
"Request Animation Frame",
"Performant Scrolling",
"es6",
"module"
],
"author": "Jordan Egstad",
"license": "MIT",
"bugs": {
"url": "https://github.com/egstad-construct/detect-scroll/issues"
},
"homepage": "https://github.com/egstad-construct/detect-scroll#readme",
"devDependencies": {
"@babel/core": "^7.14.8",
"eslint": "^7.31.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.4.0",
"jest": "^27.0.6",
"jest-coverage-badges": "^1.1.2",
"parcel-bundler": "^1.12.5",
"prettier": "^2.3.2",
"sass": "^1.35.2"
},
"jest": {
"verbose": true,
"testURL": "http://localhost:1234/",
"coverageReporters": [
"json-summary",
"text",
"lcov"
],
"collectCoverageFrom": [
"src/events.js",
"src/getElement.js"
]
}
}