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.17 to 0.0.18

.babelrc.js

32

package.json
{
"version": "0.0.17",
"version": "0.0.18",
"name": "destiny",
"main": "dist/src/index.js",
"main": "dist/index.js",
"bin": {
"destiny": "dist/src/index.js"
"destiny": "dist/index.js"
},
"engines": {
"node": ">= 10"
},
"scripts": {
"watch": "tsc -w",
"start": "nodemon dist/src/index.js",
"test": "jest tests",
"tr": "jest",
"clean": "rimraf dist",
"build": "run-s clean build:*",
"build:cjs": "babel src --extensions '.ts' --out-dir dist",
"format": "run-s format:*",
"format:eslint": "npm run lint -- --fix",
"format:prettier": "prettier --write '{**/*,*}.{js,json,md,ts,yaml}'",
"format:eslint": "npm run lint -- --fix",
"lint": "eslint '{src,test}/**/*.{js,ts}'",
"prepublishOnly": "tsc"
"prepublishOnly": "npm run build",
"start": "nodemon dist/index.js",
"test": "jest tests",
"tr": "jest",
"watch": "npm run build -- --watch"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.8.4",
"@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",
"@types/fs-extra": "^8.0.1",
"@types/glob": "^7.1.1",
"@types/jest": "^25.1.2",

@@ -28,3 +38,2 @@ "@types/mkdirp": "^1.0.0",

"@types/resolve": "^1.14.0",
"@types/rimraf": "^2.0.3",
"@typescript-eslint/eslint-plugin": "^2.19.2",

@@ -42,2 +51,3 @@ "@typescript-eslint/parser": "^2.19.2",

"prettier": "^1.19.1",
"rimraf": "^3.0.2",
"tree-node-cli": "^1.2.5",

@@ -48,3 +58,5 @@ "typescript": "^3.7.5"

"dependencies": {
"@babel/runtime": "^7.8.4",
"chalk": "^3.0.0",
"core-js": "^3.6.4",
"fs-extra": "^8.1.0",

@@ -51,0 +63,0 @@ "glob": "^7.1.6",

{
"compilerOptions": {
"target": "es6",
"module": "commonjs",
"lib": ["dom", "es6", "es2017", "esnext.asynciterable", "ES2019.Array"],
"sourceMap": true,
"outDir": "./dist",
"moduleResolution": "node",
"removeComments": true,
"noImplicitAny": true,
"strictNullChecks": true,
"strictFunctionTypes": true,
"noImplicitThis": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"forceConsistentCasingInFileNames": true,
"isolatedModules": true,
"lib": ["DOM", "DOM.Iterable", "ESNext", "ScriptHost"],
"module": "esnext",
"moduleResolution": "node",
"noEmit": true,
"resolveJsonModule": true,
"baseUrl": "."
"strict": true,
"target": "esnext"
},
"exclude": ["node_modules"],
"include": ["./src/**/*.tsx", "./src/**/*.ts"]
"include": ["src"]
}
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