This repository has been archived by the owner on Feb 11, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 33
/
package.json
85 lines (85 loc) · 2.53 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
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "scroll-js",
"version": "3.5.2",
"description": "Light cross-browser scroller that uses native javascript",
"repository": {
"type": "git",
"url": "https://github.com/markcellus/scroll-js.git"
},
"homepage": "https://github.com/markcellus/scroll-js",
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"author": "Mark",
"keywords": [
"scroller",
"scroll",
"scroll class",
"scrolljs",
"scroll js",
"scrollTo",
"scroll events",
"scrollintoview",
"scroll into view",
"window scroll",
"window scroll polyfill",
"scroll into view polyfill"
],
"license": "MIT",
"engines": {
"node": ">=16"
},
"main": "./dist/scroll.common.js",
"module": "./dist/scroll.js",
"types": "./dist/scroll.d.ts",
"files": [
"dist/**/*"
],
"scripts": {
"prep-ts": "tsc --project tests/tsconfig.json",
"test": "npm run prep-ts && npm run test:scripts && npm run lint",
"test:scripts": "web-test-runner",
"test:e2e": "testcafe",
"preversion": "npm test",
"build": "rm -rf dist/* && rollup -c",
"banner": "banner-cli dist/*.js",
"start": "rm -rf examples/dist/* && rollup -c --watch",
"start:e2e": "servor . index.html 4231",
"start:server": "servor . index.html 4234 --reload --browse",
"lint": "npm run lint:scripts && npm run lint:format",
"lint:scripts": "eslint '**/*.{js,ts}'",
"lint:format": "prettier --check '**/*'",
"coveralls": "cat .coverage/lcov.info | coveralls"
},
"devDependencies": {
"@babel/core": "^7.14.3",
"@babel/preset-env": "^7.14.2",
"@babel/preset-typescript": "^7.12.7",
"@esm-bundle/chai": "^4.3.4",
"@open-wc/testing": "^3.0.3",
"@rollup/plugin-commonjs": "^22.0.0",
"@rollup/plugin-node-resolve": "^13.0.0",
"@types/sinon": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^5.7.0",
"@typescript-eslint/parser": "^5.7.0",
"@web/dev-server-esbuild": "^0.3.0",
"@web/test-runner": "^0.13.4",
"@web/test-runner-browserstack": "^0.4.2",
"banner-cli": "^0.14.1",
"coveralls": "^3.0.7",
"dotenv": "^16.0.0",
"eslint": "^8.5.0",
"eslint-plugin-testcafe": "^0.2.1",
"prettier": "^2.5.1",
"rollup": "^2.49.0",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-serve": "^2.0.0",
"rollup-plugin-terser": "^7.0.0",
"rollup-plugin-typescript2": "^0.32.1",
"servor": "^4.0.2",
"sinon": "^14.0.0",
"testcafe": "^1.17.1",
"testcafe-browser-provider-browserstack": "^1.13.2-alpha.1",
"typescript": "^4.2.3"
}
}