-
Notifications
You must be signed in to change notification settings - Fork 157
/
package.json
57 lines (57 loc) · 1.44 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
{
"name": "is-in-viewport",
"version": "3.0.4",
"private": false,
"description": "An ultra-light jQuery plugin that tells you if an element is in the viewport but with a twist.",
"main": "lib/isInViewport.js",
"module": "lib/isInViewport.es6.js",
"scripts": {
"test": "gulp test",
"build": "gulp",
"clean": "gulp clean",
"deploy": "now -t $NOW_TOKEN && now alias -t $NOW_TOKEN"
},
"directories": {
"example": "examples"
},
"repository": {
"type": "git",
"url": "https://github.com/zeusdeux/isInViewport.git"
},
"keywords": [
"viewport",
"jquery",
"jquery-plugin"
],
"author": "Mudit Ameta",
"license": "MIT",
"bugs": {
"url": "https://github.com/zeusdeux/isInViewport/issues"
},
"peerDependencies": {
"jquery": ">1.7.0"
},
"devDependencies": {
"del": "^2.2.2",
"eslint": "^3.17.1",
"eslint-config-standard": "^7.0.1",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^2.1.1",
"gulp": "^3.9.1",
"gulp-buble": "^0.8.0",
"gulp-cli": "^1.2.2",
"gulp-concat": "^2.6.1",
"gulp-eslint": "^3.0.1",
"gulp-mocha-phantomjs": "^0.12.1",
"gulp-rename": "^1.2.2",
"gulp-sourcemaps": "^2.4.1",
"gulp-uglify": "^2.1.0",
"mocha": "^3.2.0",
"pump": "^1.0.2",
"rollup-plugin-buble": "^0.15.0",
"rollup-stream": "^1.19.0",
"should": "^11.2.1",
"vinyl-buffer": "^1.0.0",
"vinyl-source-stream": "^1.1.0"
}
}