-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 921 Bytes
/
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
{
"name": "get-window-scroll-top",
"version": "1.0.0",
"description": "get window's scroll top cross browser",
"main": "commonjs/es5/index.js",
"module": "module/es7/index.js",
"jsnext:main": "module/es7/index.js",
"scripts": {
"build": "babel-node src/build/index.js",
"prepublish": "npm run build"
},
"keywords": [
"window",
"scrolltop",
"browser"
],
"devDependencies": {
"@babel/cli": "^7.1.5",
"@babel/core": "^7.1.6",
"@babel/node": "^7.0.0",
"@babel/preset-env": "^7.1.6",
"rollup": "^2.6.1",
"rollup-plugin-babel": "^4.0.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/xboy2012/get-window-scroll-top.git"
},
"author": "xboy2012",
"license": "ISC",
"bugs": {
"url": "https://github.com/xboy2012/get-window-scroll-top/issues"
},
"homepage": "https://github.com/xboy2012/get-window-scroll-top#readme"
}