-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.05 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
{
"name": "autoscroll",
"version": "0.2.1",
"description": "A utility for auto-scroll when almost reach boundary",
"keywords": [
"auto-scroll",
"scroll"
],
"author": "Mark Lin <[email protected]>",
"license": "MIT",
"main": "lib/autoScroll.js",
"repository": {
"type": "git",
"url": "[email protected]:seawind543/autoScroll.git"
},
"bugs": {
"url": "https://github.com/seawind543/autoScroll/issues"
},
"homepage": "https://github.com/seawind543/autoScroll",
"scripts": {
"build": "babel src --out-dir lib",
"clean": "rm -f {lib}/*",
"prepublish": "npm run lint && npm run clean && npm run build",
"lint": "eslint ./src",
"lint:fix": "eslint --fix ./src"
},
"dependencies": {
"lodash.throttle": "4.1.1"
},
"devDependencies": {
"babel-cli": "6.26.0",
"babel-eslint": "8.2.3",
"babel-polyfill": "6.26.0",
"babel-preset-es2015": "6.24.1",
"babel-register": "6.26.0",
"eslint": "4.19.1",
"eslint-plugin-import": "2.12.0",
"eslint-config-airbnb-base": "13.0.0"
}
}