New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

ngus

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ngus - npm Package Compare versions

Comparing version 0.0.1 to 0.0.2

config.js

22

package.json
{
"name": "ngus",
"version": "0.0.1",
"version": "0.0.2",
"description": "ngus gives Angular 2 developers access to Famo.us DOMElement and Mesh inside of templates. This library allows engineers to bind Angular 2 properties to Famo.us Objects for fast, efficient templating.",

@@ -10,9 +10,20 @@ "main": "app.ts",

"author": "Steve Belovarich",
"license": "GNU",
"license": "MIT",
"devDependencies": {
"typescript": "^1.5.0-beta",
"live-server": "^0.8.1"
"gulp": "~3.9.0",
"gulp-concat": "^2.6.0",
"gulp-plumber": "^1.0.1",
"gulp-sourcemaps": "^1.5.2",
"gulp-typescript": "^2.8.0",
"gulp-uglify": "^1.2.0",
"gulp-watch": "^4.3.4",
"merge2": "^0.3.6",
"run-sequence": "^1.1.2",
"gulp-plumber": "~1.0.1",
"systemjs": "^0.18.6",
"traceur": "0.0.91"
},
"dependencies": {
"famous": "git+https://github.com/Famous/engine.git#develop"
"angular2": "^2.0.0-alpha.34",
"typescript": "^1.5.0-beta"
},

@@ -29,3 +40,2 @@ "repository": {

"engine",
"engine",
"ng",

@@ -32,0 +42,0 @@ "angular",

@@ -34,7 +34,7 @@ # ngus

* NOTE: ngus is still very early in development and is not ready for a Production environment.
* NOTE: ngus and Angular 2 are very early in development and not ready for deployment to a Production environment.
##Demo
A demo of ngus is running at [ngus.io](ngus.io). This is the same example found in the development repository.
A demo of ngus is running at [ngus.io](http://ngus.io).

@@ -56,7 +56,6 @@ ##Mission

Angular 2 Components can either be written in ES5, ES6 or Typescript syntax. It seems like the Angular 2 Community has put full steam support behind Typescript since ng-conf so I have chosen to use it in development of ngus. Currently, LiveServer is used for development.
Angular 2 Components can either be written in ES5, ES6 or Typescript syntax. It seems like the Angular 2 Community has put full support behind Typescript since ng-conf so I have chosen to use it in development of ngus. Currently, LiveServer is used for a development server.
```
npm install -g typescript
npm install -g live-server

@@ -76,3 +75,3 @@ ```

To watch for changes to typescript and compile on every save, run `tsc --watch` in the project directory.
To watch for changes to typescript and compile on every save, run `gulp watch` or `tsc --watch` in the project directory. NOTE 1: You may get `error TS2307:` from the `gulp-typescript` task. Disregard for now, this seems to be a bug in gulp-typescript that doesn't effect compilation.

@@ -90,7 +89,8 @@ * Commit changes to a branch, i.e. `feature/gl-textures` or `bug/broken-textures`.

* Support for Famo.us Physics Engine
* Support for Camera
* Integration of Famo.us UI Events
* Typescript type definitions for Famo.us Engine
* Complete Typescript type definitions for Famo.us Engine and ngus
* Better handling and customization of Famo.us Engine
* Build and deployment pipeline via Gulp or Browserify
* Refinement to the build tools
* Integrated tests
* Documentation

@@ -5,3 +5,3 @@ {

"target": "es5",
"module": "commonjs",
"module": "system",
"declaration": false,

@@ -11,14 +11,17 @@ "noImplicitAny": false,

"noLib": false,
"emitDecoratorMetadata": true
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"outDir": "./dist"
},
"filesGlob": [
"./**/*.ts",
"./**/**/*.ts",
"!./node_modules/**/*.ts"
],
"files": [
"./ngus/core/dom-element.ts",
"./ngus/core/node.ts",
"./ngus/service/famous.ts",
"./ngus/webgl-renderables/mesh.ts",
"./app.ts",
"./src/core/dom-element.ts",
"./src/core/node.ts",
"./src/ngus.ts",
"./src/service/famous.ts",
"./src/webgl-renderables/mesh.ts",
"./typings/angular2/angular2.d.ts",

@@ -25,0 +28,0 @@ "./typings/es6-promise/es6-promise.d.ts",

@@ -0,3 +1,4 @@

/// <reference path="angular2/angular2.d.ts" />
/// <reference path="es6-promise/es6-promise.d.ts" />
/// <reference path="rx/rx-lite.d.ts" />
/// <reference path="rx/rx.d.ts" />

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc