forked from KoryNunn/scroll-into-view
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.38 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
{
"name": "scroll-into-view",
"version": "1.14.0",
"description": "scrolls an elements into view, recursively aligning parents.",
"main": "scrollIntoView.js",
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "git@github.com:KoryNunn/scroll-into-view.git"
},
"scripts": {
"test": "browserify ./test/test.js | tape-run",
"build": "browserify ./example/index.js > ./example/index.browser.js & browserify --bare -g uglifyify ./standalone.js > ./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",
"start": "npm-run-all -p serve watchExample"
},
"author": "",
"license": "MIT",
"devDependencies": {
"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"
],
"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"
]
}