Skip to content

Commit b04a01c

Browse files
committed
Publish To NPM
1 parent 9ed1680 commit b04a01c

File tree

2 files changed

+32
-0
lines changed

2 files changed

+32
-0
lines changed

README.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,12 @@ Download package or install with Bower and include `parallax.min.js` in your doc
1212
$ bower i --save parallax.js
1313
```
1414

15+
Or install with NPM
16+
17+
```bash
18+
$ npm i --save jquery-parallax.js
19+
```
20+
1521
```html
1622
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
1723
<script src="/path/to/parallax.min.js"></script>

package.json

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
{
2+
"name": "jquery-parallax.js",
3+
"version": "1.4.2",
4+
"description": "Simple parallax scrolling effect inspired by spotify.com implemented as a jQuery plugin",
5+
"main": "parallax.min.js",
6+
"scripts": {
7+
"test": "echo \"Error: no test specified\" && exit 1"
8+
},
9+
"repository": {
10+
"type": "git",
11+
"url": "git+https://github.com/pixelcog/parallax.js.git"
12+
},
13+
"keywords": ["parallax", "scroll", "scrolling", "image"],
14+
"author": [
15+
"Mike Greiling <[email protected]> (http://pixelcog.com)",
16+
"Wolfgang Stöttinger (http://www.wolfography.at)"
17+
],
18+
"license": "MIT",
19+
"bugs": {
20+
"url": "https://github.com/pixelcog/parallax.js/issues"
21+
},
22+
"homepage": "https://github.com/pixelcog/parallax.js#readme",
23+
"dependencies": {
24+
"jquery": ">=1.7"
25+
}
26+
}

0 commit comments

Comments
 (0)