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

@aurelia/kernel

Package Overview
Dependencies
Maintainers
1
Versions
1124
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@aurelia/kernel - npm Package Compare versions

Comparing version 0.3.0-dev.20181126 to 0.3.0-dev.20181201

18

package.json
{
"name": "@aurelia/kernel",
"version": "0.3.0-dev.20181126",
"version": "0.3.0-dev.20181201",
"main": "dist/index.umd.js",

@@ -49,5 +49,5 @@ "module": "dist/index.es6.js",

"@types/mocha": "^5.2.5",
"@types/node": "^8.10.37",
"@types/sinon": "^5.0.5",
"@types/sinon-chai": "^3.2.0",
"@types/node": "^10.12.10",
"@types/sinon": "^5.0.7",
"@types/sinon-chai": "^3.2.1",
"chai": "^4.2.0",

@@ -71,6 +71,6 @@ "cross-env": "^5.2.0",

"sinon": "^7.1.1",
"sinon-chai": "^3.2.0",
"ts-loader": "^5.3.0",
"sinon-chai": "^3.3.0",
"ts-loader": "^5.3.1",
"ts-node": "^7.0.1",
"tsconfig-paths": "^3.6.0",
"tsconfig-paths": "^3.7.0",
"tslib": "^1.9.3",

@@ -81,5 +81,5 @@ "tslint": "^5.11.0",

"typescript": "^3.1.6",
"webpack": "^4.25.1"
"webpack": "^4.26.1"
},
"gitHead": "a188d7333d26216f4935bb8395eeb698451c2e9d"
"gitHead": "c26d17a05a9c8cc55ff50e8834a782945349aa5d"
}

@@ -97,3 +97,3 @@ /// <reference types="reflect-metadata" />

Reflect.getOwnMetadata = function(metadataKey: any, target: Object): any {
return (<IIndexable>target)[metadataKey];
return (target as IIndexable)[metadataKey];
};

@@ -104,3 +104,3 @@

return function(target: Function): void {
(<IIndexable>target)[metadataKey] = metadataValue;
(target as IIndexable)[metadataKey] = metadataValue;
};

@@ -240,3 +240,3 @@ };

};
return <T & RegisterSelf<T>>target;
return target as T & RegisterSelf<T>;
},

@@ -269,3 +269,3 @@

};
return <T & RegisterSelf<T>>target;
return target as T & RegisterSelf<T>;
}

@@ -272,0 +272,0 @@ };

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