-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
42 lines (42 loc) · 1.03 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
{
"scripts": {
"dev": "watchify index.js -t babelify --standalone Scrollin -o dist/index.js",
"compile": "browserify index.js -t babelify --standalone Scrollin -o dist/index.js",
"test": "mocha --compilers js:babel/register"
},
"devDependencies": {
"babel": "^5.2.17",
"babelify": "^6.1.0",
"browserify": "^10.2.0",
"mocha": "^2.2.5",
"umd": "^3.0.1",
"watchify": "^3.2.1"
},
"name": "scrollin",
"description": "Do something great when an element enters the viewport.",
"version": "0.4.1",
"main": "dist/index.js",
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "https://github.com/samccone/scrollin.git"
},
"keywords": [
"scroll",
"scrolling",
"viewport",
"🐴"
],
"author": "Sam Saccone",
"license": "MIT",
"bugs": {
"url": "https://github.com/samccone/scrollin/issues"
},
"homepage": "https://github.com/samccone/scrollin",
"dependencies": {
"lodash.throttle": "^3.0.2",
"lodash.defaults": "^4.0.0"
}
}