Socket
Socket
Sign inDemoInstall

destiny

Package Overview
Dependencies
37
Maintainers
1
Versions
23
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 0.0.18 to 0.0.21

.github/workflows/CI.yml

10

.babelrc.js

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

const { NODE_ENV } = process.env;
module.exports = {

@@ -8,3 +10,3 @@ presets: [

loose: true,
modules: "cjs",
modules: NODE_ENV === "test" ? "auto" : false,
targets: { node: 10 },

@@ -14,7 +16,5 @@ useBuiltIns: "usage",

],
"@babel/typescript",
],
plugins: [
["@babel/plugin-transform-typescript"],
["@babel/transform-runtime"],
],
plugins: [["@babel/transform-runtime"]],
};
{
"version": "0.0.18",
"version": "0.0.21",
"name": "destiny",
"main": "dist/index.js",
"main": "lib/destiny.js",
"bin": {
"destiny": "dist/index.js"
"destiny": "lib/destiny.js"
},

@@ -12,5 +12,5 @@ "engines": {

"scripts": {
"clean": "rimraf dist",
"build": "run-s clean build:*",
"build:cjs": "babel src --extensions '.ts' --out-dir dist",
"clean": "rimraf lib",
"build": "npm-run-all clean -p 'build:* -- {@}' --",
"build:cjs": "rollup -c",
"format": "run-s format:*",

@@ -21,5 +21,4 @@ "format:eslint": "npm run lint -- --fix",

"prepublishOnly": "npm run build",
"start": "nodemon dist/index.js",
"test": "jest tests",
"tr": "jest",
"start": "nodemon lib/destiny.js",
"test": "jest",
"watch": "npm run build -- --watch"

@@ -31,5 +30,7 @@ },

"@babel/plugin-transform-runtime": "^7.8.3",
"@babel/plugin-transform-typescript": "^7.8.3",
"@babel/preset-env": "^7.8.4",
"@babel/preset-typescript": "^7.8.3",
"@rollup/plugin-commonjs": "^11.0.0",
"@rollup/plugin-json": "^4.0.0",
"@rollup/plugin-node-resolve": "^7.0.0",
"@types/fs-extra": "^8.0.1",

@@ -54,2 +55,6 @@ "@types/glob": "^7.1.1",

"rimraf": "^3.0.2",
"rollup": "^1.29.0",
"rollup-plugin-add-shebang": "^0.3.0",
"rollup-plugin-babel": "^4.3.0",
"rollup-plugin-terser": "^5.2.0",
"tree-node-cli": "^1.2.5",

@@ -56,0 +61,0 @@ "typescript": "^3.7.5"

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc