forked from nckprsn/scrollme
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
39 lines (39 loc) · 924 Bytes
/
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
{
"name": "scrollme",
"version": "1.1.1",
"description": "A jQuery plugin for adding simple scrolling effects to web pages.",
"main": "jquery.scrollme.js",
"keywords": [
"animation",
"scrolling"
],
"authors": [
{
"name": "Nick Pearson",
"url": "http://nckprsn.com"
},
{
"name": "dotnetCarpenter",
"url": "https://github.com/dotnetCarpenter"
}
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "uglifyjs jquery.scrollme.js --compress > jquery.scrollme.min.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nckprsn/scrollme.git"
},
"license": "GPLv3",
"bugs": {
"url": "https://github.com/nckprsn/scrollme/issues"
},
"homepage": "https://github.com/nckprsn/scrollme#readme",
"dependencies": {
"jquery": ">=1.8"
},
"devDependencies": {
"uglify-js": "^2.6.2"
}
}