File size: 782 Bytes
bc20498
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
{
  "name": "@lezer/common",
  "version": "1.2.1",
  "description": "Syntax tree data structure and parser interfaces for the lezer parser",
  "main": "dist/index.cjs",
  "type": "module",
  "exports": {
    "import": "./dist/index.js",
    "require": "./dist/index.cjs"
  },
  "module": "dist/index.js",
  "types": "dist/index.d.ts",
  "author": "Marijn Haverbeke <[email protected]>",
  "license": "MIT",
  "devDependencies": {
    "ist": "^1.1.1",
    "@marijn/buildtool": "^0.1.5",
    "@types/mocha": "^5.2.6",
    "mocha": "^10.2.0"
  },
  "files": ["dist"],
  "repository": {
    "type" : "git",
    "url" : "https://github.com/lezer-parser/common.git"
  },
  "scripts": {
    "watch": "node build.js --watch",
    "prepare": "node build.js",
    "test": "mocha"
  }
}