Socket
Socket
Sign inDemoInstall

@alterior/core

Package Overview
Dependencies
Maintainers
1
Versions
25
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@alterior/core - npm Package Compare versions

Comparing version 1.0.3 to 1.1.0

dist.esm/accesscontrol.d.ts

6

.vscode/settings.json

@@ -8,10 +8,4 @@ // Place your settings in this file to overwrite default and user settings.

"**/.DS_Store": true,
"lib/**/*.js": true,
"lib/**/*.d.ts": true,
"lib/**/*.js.map": true,
"index.js": true,
"index.js.map": true,
"index.d.ts": true,
"*~": true
}
}

35

package.json
{
"name": "@alterior/core",
"version": "1.0.3",
"version": "1.1.0",
"private": false,
"description": "An Express-based Typescript MVC framework using decorators and Angular 2 dependency injection.",
"main": "index.js",
"typings": "index.d.ts",
"main": "dist/index.js",
"module": "dist.esm/index.js",
"typings": "dist/index.d.ts",
"repository": {

@@ -13,6 +14,7 @@ "type": "git",

"scripts": {
"test": "npm run build && ./node_modules/.bin/mocha lib/**/*.test.js",
"dev-test": "./node_modules/.bin/nodemon -e ts --ignore \"*.d.ts\" --exec npm test ",
"build": "./node_modules/.bin/tsc",
"prepublish": "./node_modules/.bin/typings install && tsc"
"test": "npm run build && mocha dist/**/*.test.js",
"dev-test": "nodemon -e ts --ignore \"*.d.ts\" --exec npm test ",
"build": "tsc -p .",
"build:esm": "tsc -p tsconfig.esm.json",
"prepublish": "npm run build"
},

@@ -34,12 +36,21 @@ "author": "William Lahti <wilahti@gmail.com>",

"devDependencies": {
"@types/body-parser": "^1.17.0",
"@types/chai": "^4.1.4",
"@types/express": "^4.16.0",
"@types/mkdirp": "^0.5.2",
"@types/node": "^10.5.1",
"@types/reflect-metadata": "^0.1.0",
"@types/superagent": "^3.8.1",
"@types/supertest": "^2.0.4",
"@types/underscore": "^1.8.8",
"chai": "^3.5.0",
"growl": "^1.10.5",
"jasmine": "^2.5.2",
"jasmine-core": "^2.5.2",
"mocha": "^3.0.2",
"mocha-typescript": "^1.0.10",
"mocha": "^5.2.0",
"mocha-typescript": "^1.1.16",
"nodemon": "^1.17.4",
"supertest": "^2.0.0",
"typings": "^2.1.1",
"typescript": "^2.0.0"
"supertest": "^3.1.0",
"typescript": "^2.9.2"
}
}

@@ -6,9 +6,23 @@ {

"sourceMap": true,
"outDir": "./dist",
"baseUrl": "./src",
"module": "commonjs",
"moduleResolution": "node",
"lib": [
"es2016",
"dom"
],
"declaration": true,
"emitDecoratorMetadata": true
"emitDecoratorMetadata": true,
"paths": {
"@/*": ["./*"]
}
},
"include": [
"src"
],
"exclude": [
"node_modules"
"node_modules",
"dist"
]
}

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