-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
51 lines (51 loc) · 1.22 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
{
"name": "scroll-swipe",
"version": "0.0.19",
"description": "a lightweight Events API for detecting scroll and touch events based on custom sensitivity",
"main": "./dist/ScrollSwipe.js",
"eslintConfig": "./.eslint.json",
"scripts": {
"start": "webpack-dev-server",
"build": "babel lib -d dist && node build.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "cmswalker",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/cmswalker/scroll-swipe.git"
},
"bugs": {
"url": "https://github.com/cmswalker/scroll-swipe/issues"
},
"keywords": [
"touch events",
"scroll events",
"touch",
"scroll",
"detect",
"direction",
"scroll-event",
"dom-scroll",
"scroll-detect",
"detect-scroll",
"scroll-direction",
"scroll-swipe",
"swipe"
],
"devDependencies": {
"babel-cli": "^6.5.2",
"babel-core": "^6.18.2",
"babel-eslint": "^7.1.0",
"babel-loader": "^6.2.4",
"babel-preset-env": "^1.5.1",
"eslint": "^3.10.0",
"gulp": "^3.9.1",
"gulp-umd": "^0.2.0",
"webpack": "1.12.2",
"webpack-dev-server": "^1.16.2"
},
"overrides": {
"graceful-fs": "^4.2.11"
}
}