Skip to content
This repository was archived by the owner on Jun 11, 2021. It is now read-only.

Commit

Permalink
initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
bergben committed Sep 18, 2016
1 parent 61425c7 commit 8186708
Show file tree
Hide file tree
Showing 11 changed files with 645 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -35,3 +35,11 @@ jspm_packages

# Optional REPL history
.node_repl_history

# Generated #
*.js
!karma.conf.js
!karma-test-shim.js
*.map
*.d.ts
typings
44 changes: 44 additions & 0 deletions .npmignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
# Logs
logs
*.log
npm-debug.log*

# Runtime data
pids
*.pid
*.seed

# Directory for instrumented libs generated by jscoverage/JSCover
lib-cov

# Coverage directory used by tools like istanbul
coverage

# nyc test coverage
.nyc_output

# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
.grunt

# node-waf configuration
.lock-wscript

# Compiled binary addons (http://nodejs.org/api/addons.html)
build/Release

# Dependency directories
node_modules
jspm_packages

# Optional npm cache directory
.npm

# Optional REPL history
.node_repl_history

# Dev #
*.ts
!*.d.ts
tests
karma.conf.js
karma-test-shim.js
5 changes: 5 additions & 0 deletions ng2-scrollimate.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
export * from './src/ng2-scrollimate.directive';
export * from './src/ng2-scrollimate.service';
export * from './src/ng2-scrollimate.service';

export {Ng2ScrollimateModule} from './src/ng2-scrollimate.module';
57 changes: 57 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
{
"name": "ng2-scrollimate",
"version": "0.0.1",
"description": "Pure angular2 directive to trigger animations on scrolling",
"main": "index.js",
"scripts": {
"lint": "tslint src/**/*.ts && tslint *.ts",
"prepublish": "typings install && tsc",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": {
"name": "Benedikt Berger",
"email": "benedikt.berger@live.de"
},
"keywords": [
"angular",
"angular2",
"scrolling",
"scrollimate",
"animations"
],
"typings": "./ng2-scrollimate.d.ts",
"peerDependencies": {
"@angular/core": "^2.0.0-rc.4",
"@angular/common": "^2.0.0-rc.4",
"@angular/compiler": "^2.0.0-rc.4",
"@angular/platform-browser": "^2.0.0-rc.4",
"@angular/platform-browser-dynamic": "^2.0.0-rc.4",
"rxjs": "^5.0.0-beta.6",
"zone.js": "^0.6.12"
},
"devDependencies": {
"@angular/common": "^2.0.0-rc.4",
"@angular/compiler": "^2.0.0-rc.4",
"@angular/core": "^2.0.0-rc.4",
"@angular/platform-browser": "^2.0.0-rc.4",
"@angular/platform-browser-dynamic": "^2.0.0-rc.4",
"codelyzer": "0.0.28",
"es6-promise": "^3.0.2",
"es6-shim": "^0.35.0",
"reflect-metadata": "^0.1.2",
"rxjs": "^5.0.0-beta.6",
"tslint": "^3.15.1",
"typescript": "^1.8.10",
"typings": "^1.3.3",
"zone.js": "^0.6.1"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/bergben/ng2-scrollimate.git"
},
"bugs": {
"url": "https://github.com/bergben/ng2-scrollimate/issues"
},
"homepage": "https://github.com/bergben/ng2-scrollimate#readme"
}
Loading

0 comments on commit 8186708

Please sign in to comment.