-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
73 lines (73 loc) · 2.08 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
72
73
{
"name": "scroll-watcher",
"version": "2.2.0",
"description": "A lightweight, blazing fast, rAF based, scroll watcher.",
"author": "Jonatas Walker",
"homepage": "https://github.com/jonataswalker/scroll-watcher",
"license": "MIT",
"type": "module",
"browser": "dist/scroll-watcher.min.js",
"keywords": [
"scroll",
"watcher",
"dom",
"monitor"
],
"files": [
"dist/"
],
"repository": {
"type": "git",
"url": "git://github.com/jonataswalker/scroll-watcher.git"
},
"bugs": {
"url": "https://github.com/jonataswalker/scroll-watcher/issues"
},
"scripts": {
"dev": "npm run build -- watch",
"build": "node rollup",
"lint": "eslint --cache --ext .js .",
"lint:fix": "npm run lint -- --fix",
"test": "run-s build test:unit test:e2e",
"test:e2e": "testcafe chrome test/e2e/*.test.js",
"test:unit": "jest"
},
"jest": {
"testURL": "http://localhost/",
"testEnvironment": "jsdom",
"testRegex": "/test/unit/.*\\.test\\.js$",
"transform": {
"^.+\\.js?$": "babel-jest"
}
},
"babel": {
"presets": [
"@babel/preset-env"
]
},
"devDependencies": {
"@babel/core": "^7.17.9",
"@babel/preset-env": "^7.16.11",
"@rollup/plugin-buble": "^0.21.3",
"ansi-colors": "^4.1.1",
"babel-jest": "^27.5.1",
"eslint": "^8.13.0",
"eslint-config-jwalker": "^7.6.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-jest": "^26.1.4",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-testcafe": "^0.2.1",
"fs-jetpack": "^4.3.1",
"jest": "^27.5.1",
"maxmin": "^4.0.0",
"npm-run-all": "^4.1.5",
"ora": "^6.1.0",
"prettier": "^2.6.2",
"pretty-bytes": "^6.0.0",
"pretty-time": "^1.1.0",
"rollup": "^2.70.1",
"rollup-plugin-terser": "^7.0.2",
"rxjs": "^7.5.5",
"testcafe": "^1.18.5"
}
}