File tree 7 files changed +89
-33
lines changed
7 files changed +89
-33
lines changed File renamed without changes.
Original file line number Diff line number Diff line change
1
+ language : node_js
2
+ node_js :
3
+ - " 0.10"
4
+ before_script :
5
+ - "node dev/build"
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " ScrollMagic" ,
3
- "version" : " 1.1.0-alpha" ,
4
3
"title" : " ScrollMagic" ,
4
+ "version" : " 1.1.0-alpha" ,
5
+ "description" : " The jQuery plugin for magical scroll interactions." ,
5
6
"author" : {
6
7
"name" : " Jan Paepke" ,
7
8
"url" : " http://www.janpaepke.de"
12
13
"url" : " https://github.com/janpaepke/ScrollMagic/blob/master/LICENSE.md"
13
14
},
14
15
{
15
- "type" : " GPL" ,
16
+ "type" : " GPL-3.0+ " ,
16
17
"url" : " http://www.gnu.org/licenses/gpl-3.0.html"
17
18
}
18
19
],
19
20
"dependencies" : {
20
21
"jquery" : " >=1.7" ,
21
22
"greensock" : " >=1.8"
22
23
},
23
- "description" : " The jQuery plugin for magical scroll interactions." ,
24
24
"keywords" : [
25
25
" scroll" ,
26
26
" scrolling" ,
27
27
" animation" ,
28
28
" sticky" ,
29
29
" pin" ,
30
+ " fixed" ,
30
31
" scrollbar" ,
31
32
" position" ,
32
33
" progress"
34
+ " parallax" ,
35
+ " events" ,
36
+ " classes"
33
37
],
34
38
"homepage" : " http://janpaepke.github.io/ScrollMagic/" ,
35
39
"docs" : " http://janpaepke.github.io/ScrollMagic/docs" ,
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " ScrollMagic" ,
3
- "description" : " The jQuery plugin for magical scroll interactions." ,
4
3
"version" : " 1.1.0-alpha" ,
4
+ "description" : " The jQuery plugin for magical scroll interactions." ,
5
5
"homepage" : " http://janpaepke.github.io/ScrollMagic/" ,
6
- "author" : {
7
- "name" : " Jan Paepke" ,
8
- "url" : " http://www.janpaepke.de"
9
- },
6
+ "authors" : [
7
+ {
8
+ "name" : " Jan Paepke" ,
9
+ "homepage" : " http://www.janpaepke.de"
10
+ }
11
+ ],
10
12
"main" : [
11
13
" js/jquery.scrollmagic.js"
12
14
],
15
+ "keywords" : [
16
+ " scroll" ,
17
+ " scrolling" ,
18
+ " animation" ,
19
+ " sticky" ,
20
+ " pin" ,
21
+ " fixed" ,
22
+ " scrollbar" ,
23
+ " position" ,
24
+ " progress"
25
+ " parallax" ,
26
+ " events" ,
27
+ " classes"
28
+ ],
13
29
"dependencies" : {
14
30
"jquery" : " ~1.11.0" ,
15
31
"gsap" : " ~> 1.11.5"
16
- }
32
+ },
33
+ "license" : [
34
+ " MIT" ,
35
+ " GPL-3.0+"
36
+ ]
17
37
}
Original file line number Diff line number Diff line change 23
23
"use strict" ;
24
24
25
25
// vars
26
- var pkg = require ( './package.json' ) ;
26
+ var pkg = require ( '.. /package.json' ) ;
27
27
28
28
// internals
29
29
var fs = require ( 'fs' ) ;
@@ -286,7 +286,7 @@ for (var release in OUTPUT) {
286
286
// update version numbers?
287
287
if ( options . version !== pkg . version ) {
288
288
// where?
289
- var jsonFiles = [ "package.json" , "../bower.json" , "../ScrollMagic.jquery.json" ] ;
289
+ var jsonFiles = [ "../ package.json" , "../bower.json" , "../ScrollMagic.jquery.json" ] ;
290
290
var readmeFile = "../README.md" ;
291
291
// go!
292
292
log . info ( "Updating version numbers to" , options . version ) ;
@@ -314,7 +314,7 @@ if (options.version !== pkg.version) {
314
314
if ( options . updateDocs ) {
315
315
log . info ( "Generating new docs" ) ;
316
316
var
317
- bin = '"' + abspath ( 'node_modules/.bin/jsdoc' ) + '"' ,
317
+ bin = '"' + abspath ( '../ node_modules/.bin/jsdoc' ) + '"' ,
318
318
docIn = '"' + abspath ( '../README.md' ) + '"' ,
319
319
docOut = '-d "' + options . folderDocsOut + '"' ,
320
320
conf = '-c "' + abspath ( 'docs/jsdoc.conf.json' ) + '"' ,
Load Diff This file was deleted.
Original file line number Diff line number Diff line change
1
+ {
2
+ "name" : " ScrollMagic" ,
3
+ "title" : " ScrollMagic" ,
4
+ "version" : " 1.1.0-alpha" ,
5
+ "description" : " The jQuery plugin for magical scroll interactions." ,
6
+ "author" : {
7
+ "name" : " Jan Paepke" ,
8
+ "url" : " http://www.janpaepke.de"
9
+ },
10
+ "repository" : {
11
+ "type" : " git" ,
12
+ "url" : " git://github.com/janpaepke/ScrollMagic.git"
13
+ },
14
+ "licenses" : [
15
+ {
16
+ "type" : " MIT" ,
17
+ "url" : " https://github.com/janpaepke/ScrollMagic/blob/master/LICENSE.md"
18
+ },
19
+ {
20
+ "type" : " GPL-3.0+" ,
21
+ "url" : " http://www.gnu.org/licenses/gpl-3.0.html"
22
+ }
23
+ ],
24
+ "main" : " js/jquery.scrollmagic.js" ,
25
+ "engines" : {
26
+ "node" : " 0.10.x"
27
+ },
28
+ "devDependencies" : {
29
+ "chalk" : " ^0.5.1" ,
30
+ "detect-indent" : " ^0.2.0" ,
31
+ "jsdoc" : " ^3.3.0" ,
32
+ "jshint" : " ~2.5.1" ,
33
+ "karma" : " ^0.12.21" ,
34
+ "karma-chrome-launcher" : " ^0.1.4" ,
35
+ "karma-jasmine" : " ^0.2.2" ,
36
+ "karma-requirejs" : " ^0.2.2" ,
37
+ "semver" : " ^3.0.1" ,
38
+ "uglify-js" : " ~2.4.13"
39
+ },
40
+ "directories" : {
41
+ "doc" :" ./doc" ,
42
+ "example" :" ./examples"
43
+ },
44
+ "scripts" : {
45
+ "pretest" : " npm install" ,
46
+ "test" : " ./node_modules/karma/bin/karma start ./dev/tests/karma.conf.js"
47
+ }
48
+ }
You can’t perform that action at this time.
0 commit comments