Socket
Socket
Sign inDemoInstall

ast-contains-only-empty-space

Package Overview
Dependencies
Maintainers
1
Versions
154
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ast-contains-only-empty-space - npm Package Compare versions

Comparing version 2.1.0 to 3.0.0

10

CHANGELOG.md

@@ -6,2 +6,12 @@ # Change Log

## 3.0.0 (2021-09-09)
### Features
- migrate to ES Modules ([8c9d95d](https://github.com/codsen/codsen/commit/8c9d95d5dea0b769c2f070397141918a4893d575))
### BREAKING CHANGES
- programs now are in ES Modules and won't work with Common JS require()
## 2.1.0 (2021-05-24)

@@ -8,0 +18,0 @@

2

dist/ast-contains-only-empty-space.esm.js
/**
* @name ast-contains-only-empty-space
* @fileoverview Does AST contain only empty space?
* @version 2.1.0
* @version 3.0.0
* @author Roy Revelt, Codsen Ltd

@@ -6,0 +6,0 @@ * @license MIT

/**
* @name ast-contains-only-empty-space
* @fileoverview Does AST contain only empty space?
* @version 2.1.0
* @version 3.0.0
* @author Roy Revelt, Codsen Ltd

@@ -14,3 +14,3 @@ * @license MIT

* @fileoverview Utility library of AST helper functions
* @version 1.4.0
* @version 2.0.0
* @author Roy Revelt, Codsen Ltd

@@ -23,3 +23,3 @@ * @license MIT

* @fileoverview Utility library to traverse AST
* @version 2.1.0
* @version 3.0.0
* @author Roy Revelt, Codsen Ltd

@@ -26,0 +26,0 @@ * @license MIT

{
"name": "ast-contains-only-empty-space",
"version": "2.1.0",
"version": "3.0.0",
"description": "Does AST contain only empty space?",

@@ -33,5 +33,7 @@ "keywords": [

},
"main": "dist/ast-contains-only-empty-space.cjs.js",
"module": "dist/ast-contains-only-empty-space.esm.js",
"browser": "dist/ast-contains-only-empty-space.umd.js",
"type": "module",
"exports": {
"script": "./dist/ast-contains-only-empty-space.umd.js",
"default": "./dist/ast-contains-only-empty-space.esm.js"
},
"types": "types/index.d.ts",

@@ -56,3 +58,3 @@ "scripts": {

"test:examples": "../../scripts/test-examples.js && npm run lect && npm run prettier",
"unittest": "./node_modules/.bin/tap --no-only --output-file=testStats.md --reporter=terse && tsc -p tsconfig.json --noEmit && npm run clean_cov && npm run perf",
"unittest": "tap --no-only --output-file=testStats.md --reporter=terse && tsc -p tsconfig.json --noEmit && npm run clean_cov && npm run perf",
"clean_cov": "../../scripts/leaveCoverageTotalOnly.js",

@@ -62,2 +64,3 @@ "clean_types": "../../scripts/cleanTypes.js"

"tap": {
"check-coverage": false,
"coverage-report": [

@@ -67,5 +70,6 @@ "json-summary",

],
"nyc-arg": [
"--exclude=**/*.cjs.js",
"--exclude=**/*.umd.js"
"node-arg": [
"--no-warnings",
"--experimental-loader",
"@istanbuljs/esm-loader-hook"
],

@@ -86,41 +90,45 @@ "timeout": 0

"dependencies": {
"@babel/runtime": "^7.14.0",
"ast-monkey-traverse": "^2.1.0"
"@babel/runtime": "^7.15.4",
"ast-monkey-traverse": "^3.0.0"
},
"devDependencies": {
"@babel/cli": "^7.14.3",
"@babel/core": "^7.14.3",
"@babel/node": "^7.14.2",
"@babel/plugin-external-helpers": "^7.12.13",
"@babel/plugin-proposal-class-properties": "^7.13.0",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.14.2",
"@babel/plugin-proposal-object-rest-spread": "^7.14.2",
"@babel/plugin-proposal-optional-chaining": "^7.14.2",
"@babel/plugin-transform-runtime": "^7.14.3",
"@babel/preset-env": "^7.14.2",
"@babel/preset-typescript": "^7.13.0",
"@babel/register": "^7.13.16",
"@babel/cli": "^7.15.4",
"@babel/core": "^7.15.5",
"@babel/node": "^7.15.4",
"@babel/plugin-external-helpers": "^7.14.5",
"@babel/plugin-proposal-class-properties": "^7.14.5",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.14.5",
"@babel/plugin-proposal-object-rest-spread": "^7.15.6",
"@babel/plugin-proposal-optional-chaining": "^7.14.5",
"@babel/plugin-transform-runtime": "^7.15.0",
"@babel/preset-env": "^7.15.6",
"@babel/preset-typescript": "^7.15.0",
"@babel/register": "^7.15.3",
"@istanbuljs/esm-loader-hook": "^0.1.2",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-commonjs": "^19.0.0",
"@rollup/plugin-node-resolve": "^13.0.0",
"@rollup/plugin-strip": "^2.0.1",
"@rollup/plugin-typescript": "^8.2.1",
"@types/node": "^15.6.0",
"@types/tap": "^15.0.1",
"@typescript-eslint/eslint-plugin": "^4.24.0",
"@typescript-eslint/parser": "^4.24.0",
"core-js": "^3.12.1",
"@rollup/plugin-commonjs": "^20.0.0",
"@rollup/plugin-node-resolve": "^13.0.4",
"@rollup/plugin-strip": "^2.1.0",
"@rollup/plugin-typescript": "^8.2.5",
"@types/node": "^16.9.1",
"@types/tap": "^15.0.5",
"@typescript-eslint/eslint-plugin": "^4.31.0",
"@typescript-eslint/parser": "^4.31.0",
"core-js": "^3.17.3",
"cross-env": "^7.0.3",
"eslint": "^7.27.0",
"lect": "^0.17.0",
"rollup": "^2.49.0",
"eslint": "^7.32.0",
"lect": "^0.18.0",
"rollup": "^2.56.3",
"rollup-plugin-ascii": "^0.0.3",
"rollup-plugin-banner": "^0.2.1",
"rollup-plugin-cleanup": "^3.2.1",
"rollup-plugin-dts": "^3.0.1",
"rollup-plugin-dts": "^4.0.0",
"rollup-plugin-terser": "^7.0.2",
"tap": "^14.11.0",
"tslib": "^2.2.0",
"typescript": "^4.2.4"
"tap": "^15.0.9",
"tslib": "^2.3.1",
"typescript": "^4.4.2"
},
"engines": {
"node": ">=12"
}
}
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