-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.41 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.41 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
{
"name": "eased-smooth-scroll",
"version": "1.0.0",
"description": "Ensure smooth scrolling for scrollTo, scrollBy and scrollIntoView. Uses native browser API if available.",
"main": "index.js",
"scripts": {
"publish": "npm run clean && parcel build index.js --target browser --no-minify && npm run test:coverage",
"clean": "rm -rf dist && rm -rf .cache",
"dev": "npm run clean && parcel **/*.html",
"test": "jest --config ./jest-default.config.json",
"test:coverage": "jest --config ./jest-coverage.config.json",
"test:watch": "jest --config ./jest-default.config.json --watch"
},
"keywords": [],
"author": "Dan Johnson",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/preset-env": "^7.12.10",
"@jest-runner/electron": "^3.0.0",
"babel-jest": "^26.6.3",
"electron": "^11.1.0",
"jest": "^26.6.3",
"less": "^3.12.2",
"parcel": "^1.12.4",
"parcel-bundler": "^1.12.4",
"regenerator-runtime": "^0.13.7"
},
"browserslist": [
"defaults"
],
"dependencies": {
"js-easing-functions": "^1.0.3"
},
"directories": {
"example": "example"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Danjohnsonnj/eased-smooth-scroll.git"
},
"bugs": {
"url": "https://github.com/Danjohnsonnj/eased-smooth-scroll/issues"
},
"homepage": "https://github.com/Danjohnsonnj/eased-smooth-scroll#readme"
}