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

dot-language-support

Package Overview
Dependencies
Maintainers
1
Versions
66
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

dot-language-support - npm Package Compare versions

Comparing version 1.7.0 to 2.0.0

jest.config.mjs

23

package.json
{
"name": "dot-language-support",
"version": "1.7.0",
"version": "2.0.0",
"description": "Parser and language service for graphviz (dot) files",
"author": "Niklas Mollenhauer",
"license": "MIT",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"main": "./lib/cjs/index.js",
"module": "./lib/esm/index.js",
"types": "./lib/esm/index.d.ts",
"scripts": {
"test": "mocha -r ts-node/register tests/**/*.spec.ts tests/*.spec.ts",
"test": "jest --rootDir=tests",
"clean": "rimraf lib",
"compile": "tsc",
"prepare": "npm run compile"
"compile:esm": "tsc --target esnext --module esnext --outDir lib/esm",
"compile:cjs": "tsc --target es2017 --module commonjs --outDir lib/cjs",
"compile": "npm run compile:esm && npm run compile:cjs",
"prepare": "npm run clean && npm run compile"
},

@@ -32,6 +35,6 @@ "keywords": [

"devDependencies": {
"@types/chai": "^4.3.1",
"@types/mocha": "^9.1.1",
"chai": "^4.3.6",
"mocha": "^10.0.0",
"@types/jest": "^27.5.0",
"jest": "^28.0.3",
"rimraf": "^3.0.2",
"ts-jest": "^28.0.1",
"ts-node": "^10.7.0",

@@ -38,0 +41,0 @@ "typescript": "^4.6.4"

@@ -1,8 +0,9 @@

# dot-language-support
> [![Build Status](https://travis-ci.com/nikeee/dot-language-support.svg?branch=master)](https://travis-ci.com/nikeee/dot-language-support) ![Dependency Status](https://david-dm.org/nikeee/dot-language-support.svg) [![npm version](https://badge.fury.io/js/dot-language-support.svg)](https://www.npmjs.com/package/dot-language-support)
# dot-language-support [![CD](https://github.com/nikeee/dot-language-support/actions/workflows/CD.yml/badge.svg)](https://github.com/nikeee/dot-language-support/actions/workflows/CD.yml) [![CI](https://github.com/nikeee/dot-language-support/actions/workflows/CI.yml/badge.svg)](https://github.com/nikeee/dot-language-support/actions/workflows/CI.yml) ![Dependencies](https://img.shields.io/librariesio/release/npm/dot-language-support) [![npm version](https://img.shields.io/npm/v/dot-language-support)](https://www.npmjs.com/package/dot-language-support)
A language service library, written in TypeScript. Used by [dot-language-server](https://github.com/nikeee/dot-language-server) and [edotor.net](https://edotor.net).
## Features
- Hightlight semantic and syntactic errors
- Highlight semantic and syntactic errors
- Auto completion for colors and shapes

@@ -15,4 +16,4 @@ - Code Actions:

## Installation
```Shell
```sh
npm -S i dot-language-support
```

Sorry, the diff of this file is not supported yet

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