forked from jlmakes/scrollreveal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.04 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
{
"name": "scrollReveal.js",
"version": "0.1.2",
"description": "Declarative on-scroll reveal animations",
"main": "scrollReveal.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "browserify test/test.js > test/bundle.js; testling",
"browser": "browserify test/test.js > test/bundle.js; open test/test.html"
},
"repository": {
"type": "git",
"url": "https://github.com/julianlloyd/scrollReveal.js.git"
},
"author": "Julian Lloyd",
"license": "MIT",
"bugs": {
"url": "https://github.com/julianlloyd/scrollReveal.js/issues"
},
"testling": {
"html": "test/test.html",
"browsers": [
"ie/8..latest",
"chrome/latest",
"firefox/latest",
"safari/latest",
"iphone/6",
"ipad/6",
"android-browser/latest"
]
},
"homepage": "https://github.com/julianlloyd/scrollReveal.js",
"devDependencies": {
"tape": "*",
"testling": "*",
"browserify": "*",
"gulp": "*",
"gulp-uglify": "*",
"gulp-wrap-umd": "*",
"gulp-rename": "~1.1.0"
}
}