-
Notifications
You must be signed in to change notification settings - Fork 68
/
package.json
94 lines (94 loc) · 2.79 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"title": "jQuery ScrollTo",
"name": "jquery-scrollto",
"version": "1.4.6",
"description": "Smooth scroll to any jQuery/DOM element",
"homepage": "https://balupton.github.io/jquery-scrollto/",
"project": "https://github.com/balupton/jquery-scrollto",
"download": "https://github.com/balupton/jquery-scrollto/zipball/gh-pages",
"license": "MIT",
"badges": {
"list": [
"npmversion",
"npmdownloads",
"daviddm",
"daviddmdev",
"---",
"slackin",
"patreon",
"gratipay",
"flattr",
"paypal",
"bitcoin",
"wishlist"
],
"config": {
"patreonUsername": "bevry",
"gratipayUsername": "bevry",
"flattrUsername": "balupton",
"paypalURL": "https://bevry.me/paypal",
"bitcoinURL": "https://bevry.me/bitcoin",
"wishlistURL": "https://bevry.me/wishlist",
"slackinURL": "https://slack.bevry.me"
}
},
"keywords": [
"jquery",
"scroll",
"scrolling",
"scrollto",
"smooth",
"dom",
"jquery-plugin"
],
"author": "2010+ Benjamin Lupton <[email protected]> (http://balupton.com)",
"maintainers": [
"Benjamin Lupton <[email protected]> (http://balupton.com)",
"Andy <[email protected]> (http://inumedia.net)"
],
"contributors": [
"Benjamin Lupton <[email protected]> (http://balupton.com)",
"Andy <[email protected]> (http://inumedia.net)",
"Peter Dave Hello (http://www.peterdavehello.org/)"
],
"bugs": {
"url": "https://github.com/balupton/jquery-scrollto/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/balupton/jquery-scrollto.git"
},
"main": "out/lib/jquery-scrollto.js",
"browser": {
"jquery": false
},
"scripts": {
"clean": "rm -Rf ./out",
"compile": "npm run compile:docpad",
"compile:docpad": "docpad generate --env static",
"meta": "npm run meta:projectz",
"meta:projectz": "projectz compile",
"prepare": "npm run compile && npm run test && npm run meta",
"release": "npm run prepare && npm run release:publish && npm run release:tag && npm run release:push && npm run release:deploy",
"release:publish": "npm publish",
"release:tag": "git tag v$npm_package_version -a",
"release:push": "git push origin master && git push origin --tags",
"release:deploy": "docpad deploy-ghpages --env static",
"pretest": "npm run test:eslint",
"test:eslint": "eslint ./source",
"test": "echo 'no tests'"
},
"dependencies": {},
"devDependencies": {
"docpad": "6.x",
"docpad-plugin-cleanurls": "2.x",
"docpad-plugin-eco": "2.x",
"docpad-plugin-ghpages": "2.x",
"docpad-plugin-highlightjs": "2.x",
"docpad-plugin-livereload": "2.x",
"docpad-plugin-services": "2.x",
"docpad-plugin-umd": "2.x",
"eslint": "^2.13.1",
"projectz": "^1.2.0"
}
}