forked from KoryNunn/scroll-into-view
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.58 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
{
"name": "scroll-into-view",
"version": "1.16.0",
"description": "scrolls an elements into view, recursively aligning parents.",
"main": "scrollIntoView.min.js",
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "[email protected]:KoryNunn/scroll-into-view.git"
},
"scripts": {
"test": "browserify ./test/test.js | tape-run",
"build": "npx babel scrollIntoView.js --out-file scrollIntoView.min.js",
"watchTest": "watchify ./test/test.js -d -o ./test/test.browser.js",
"watchExample": "watchify ./example/index.js -d -o ./example/index.browser.js",
"prepublish": "npm run-script build",
"serve": "static example",
"serveTest": "static test",
"start": "npm-run-all -p serve watchExample",
"startTest": "npm-run-all -p serveTest watchTest"
},
"author": "",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.14.5",
"@babel/core": "^7.14.6",
"@babel/preset-env": "^7.14.7",
"babel-preset-minify": "^0.5.1",
"babelify": "^10.0.0",
"browserify": "^14.4.0",
"chlogit": "^1.0.2",
"crel": "^1.1.1",
"node-static": "^0.7.11",
"npm-run-all": "^4.1.5",
"tape": "~2.1.0",
"tape-run": "^6.0.1",
"uglifyify": "^4.0.2",
"watchify": "^3.9.0"
},
"files": [
"*.js",
"babel.config.json"
],
"dependencies": {},
"collective": {
"type": "opencollective",
"url": "https://opencollective.com/scroll-into-view"
},
"keywords": [
"scroll into view",
"scrollIntoView",
"scroll into view if needed",
"smooth scroll",
"scroll parents"
]
}