Socket
Socket
Sign inDemoInstall

bandersnatch

Package Overview
Dependencies
Maintainers
1
Versions
74
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

bandersnatch - npm Package Compare versions

Comparing version 1.9.2 to 1.10.0

lib/cjs/argument.cjs

50

package.json
{
"name": "bandersnatch",
"description": "Simple TypeScript CLI / REPL framework",
"version": "1.9.2",
"version": "1.10.0",
"repository": {

@@ -21,19 +21,37 @@ "type": "git",

],
"main": "lib/index.js",
"author": "",
"license": "MIT",
"engines": {
"node": ">=12"
},
"sideEffects": false,
"files": [
"lib"
],
"types": "lib/index.d.ts",
"main": "./lib/cjs/index.js",
"exports": {
"types": "./lib/types/index.d.ts",
"import": "./lib/cjs/index.cjs",
"require": "./lib/cjs/index.cjs"
},
"type": "module",
"types": "./lib/types/index.d.ts",
"scripts": {
"prepublishOnly": "yarn build",
"build": "tsc --project tsconfig.build.json",
"watch": "tsc --watch",
"lint": "prettier --write \"src/**/*\"",
"test": "tsd && jest",
"build": "rm -rf lib && yarn build:cjs && yarn build:esm",
"build:cjs": "tsc --project tsconfig.build.json --module commonjs --outDir lib/cjs && yarn convert-extension cjs lib/cjs/ && rm lib/cjs/*.map",
"build:esm": "tsc --project tsconfig.build.json --module es6 --outDir lib/esm",
"watch:cjs": "yarn build:cjs --watch",
"watch:esm": "yarn build:esm --watch",
"format": "yarn format:code && yarn format:toc && yarn format:todos",
"format:code": "prettier --write \"src/**/*\"",
"format:toc": "doctoc README.md",
"format:todos": "leasot --exit-nicely --reporter markdown \"{src,tests}/**/*.ts\" > TODO.md",
"test": "yarn test:unit && yarn test:types && yarn test:smoke",
"test:unit": "jest",
"test:types": "tsd",
"test:smoke": "./tests/smoke/run.sh",
"start": "ts-node",
"doc:toc": "doctoc README.md",
"doc:todos": "leasot --exit-nicely --reporter markdown \"{src,test-d,tests}/**/*.ts\" > TODO.md"
"release": "semantic-release"
},
"author": "",
"license": "MIT",
"dependencies": {

@@ -46,5 +64,2 @@ "@types/yargs": "^17.0.2",

},
"engines": {
"node": ">=12"
},
"devDependencies": {

@@ -55,2 +70,3 @@ "@semantic-release/changelog": "6.0.1",

"@types/node": "16.11.26",
"convert-extension": "0.3.0",
"doctoc": "2.1.0",

@@ -62,7 +78,11 @@ "husky": "7.0.4",

"prettier": "2.6.0",
"semantic-release": "19.0.2",
"ts-jest": "27.1.3",
"ts-node": "10.7.0",
"tsd": "^0.19.1",
"tsd": "0.19.1",
"typescript": "4.6.2"
},
"tsd": {
"directory": "tests/types"
}
}

@@ -33,2 +33,3 @@ # bandersnatch

- [Getting started](#getting-started)

@@ -66,2 +67,4 @@ - [Installation](#installation)

- [Contributing](#contributing)
- [Local install](#local-install)
- [Devcontainer](#devcontainer)
- [License](#license)

@@ -746,4 +749,7 @@

Contributions are very welcome.
Contributions are very welcome. Please use
[conventional commits](https://www.conventionalcommits.org/en/v1.0.0/).
### Local install
```bash

@@ -753,3 +759,3 @@ # Clone and install

cd bandersnatch
yarn
yarn install
yarn husky install

@@ -761,5 +767,7 @@

Please use
[conventional commits](https://www.conventionalcommits.org/en/v1.0.0/).
### Devcontainer
A devcontainer configuration is included in this repo to
[get started quickly](https://code.visualstudio.com/docs/remote/containers#_quick-start-open-an-existing-folder-in-a-container).
## License

@@ -766,0 +774,0 @@

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