Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

astq

Package Overview
Dependencies
Maintainers
1
Versions
94
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

astq - npm Package Compare versions

Comparing version 2.7.1 to 2.7.2

25

package.json
{
"name": "astq",
"version": "2.7.1",
"version": "2.7.2",
"description": "Abstract Syntax Tree (AST) Query Engine",

@@ -22,9 +22,9 @@ "keywords": [ "abstract", "syntax", "tree", "query", "engine", "adaptable" ],

"pegjs": "0.10.0",
"pegjs-otf": "1.2.16",
"pegjs-util": "1.4.19",
"asty": "1.8.10",
"cache-lru": "1.1.10"
"pegjs-otf": "1.2.17",
"pegjs-util": "1.4.20",
"asty": "1.8.11",
"cache-lru": "1.1.11"
},
"devDependencies": {
"grunt": "1.2.1",
"grunt": "1.3.0",
"grunt-cli": "1.3.2",

@@ -36,13 +36,12 @@ "grunt-contrib-clean": "2.0.0",

"babel-eslint": "10.1.0",
"@babel/core": "7.10.5",
"eslint": "7.5.0",
"eslint-config-standard": "14.1.1",
"eslint-plugin-standard": "4.0.1",
"@babel/core": "7.12.10",
"eslint": "7.16.0",
"eslint-config-standard": "16.0.2",
"eslint-plugin-promise": "4.2.1",
"eslint-plugin-import": "2.22.0",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-node": "11.1.0",
"mocha": "8.0.1",
"mocha": "8.2.1",
"chai": "4.2.0",
"babelify": "10.0.0",
"@babel/preset-env": "7.10.4",
"@babel/preset-env": "7.12.11",
"uglifyify": "5.0.2",

@@ -49,0 +48,0 @@ "browserify-header": "1.0.1",

@@ -37,3 +37,3 @@ /*

const ASTQQueryParse = PEG.generateFromFile(
/* eslint no-path-concat: off */
/* eslint node/no-path-concat: off */
__dirname + "/astq-query-parse.pegjs",

@@ -40,0 +40,0 @@ { optimize: "speed", cache: true }

@@ -30,10 +30,10 @@ /*

var chai = require("chai")
var expect = chai.expect
const chai = require("chai")
const expect = chai.expect
chai.config.includeStack = true
var ASTQ = require("../lib/astq.node.js")
const ASTQ = require("../lib/astq.node.js")
describe("ASTq Library", function () {
var astq = new ASTQ()
const astq = new ASTQ()

@@ -67,13 +67,13 @@ it("API availability", function () {

*/
var ASTY = require("asty")
var asty = new ASTY()
var node1 = asty.create("node1")
var node2 = asty.create("node2")
var node3 = asty.create("node3")
var node4 = asty.create("node4")
var node5 = asty.create("node5")
var node6 = asty.create("node6").set("foo", "bar")
var node7 = asty.create("node7").set("quux", "baz")
var node8 = asty.create("node8")
var node9 = asty.create("node9")
const ASTY = require("asty")
const asty = new ASTY()
const node1 = asty.create("node1")
const node2 = asty.create("node2")
const node3 = asty.create("node3")
const node4 = asty.create("node4")
const node5 = asty.create("node5")
const node6 = asty.create("node6").set("foo", "bar")
const node7 = asty.create("node7").set("quux", "baz")
const node8 = asty.create("node8")
const node9 = asty.create("node9")
node1.add(node2)

@@ -80,0 +80,0 @@ node1.add(node3)

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is too big to display

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