| 1 | {
|
|---|
| 2 | "name": "lines-and-columns",
|
|---|
| 3 | "version": "1.2.4",
|
|---|
| 4 | "description": "Maps lines and columns to character offsets and back.",
|
|---|
| 5 | "keywords": [
|
|---|
| 6 | "lines",
|
|---|
| 7 | "columns",
|
|---|
| 8 | "parser"
|
|---|
| 9 | ],
|
|---|
| 10 | "homepage": "https://github.com/eventualbuddha/lines-and-columns#readme",
|
|---|
| 11 | "bugs": {
|
|---|
| 12 | "url": "https://github.com/eventualbuddha/lines-and-columns/issues"
|
|---|
| 13 | },
|
|---|
| 14 | "repository": {
|
|---|
| 15 | "type": "git",
|
|---|
| 16 | "url": "https://github.com/eventualbuddha/lines-and-columns.git"
|
|---|
| 17 | },
|
|---|
| 18 | "license": "MIT",
|
|---|
| 19 | "author": "Brian Donovan <brian@donovans.cc>",
|
|---|
| 20 | "main": "./build/index.js",
|
|---|
| 21 | "types": "./build/index.d.ts",
|
|---|
| 22 | "files": [
|
|---|
| 23 | "build"
|
|---|
| 24 | ],
|
|---|
| 25 | "scripts": {
|
|---|
| 26 | "build:watch": "tsc --build tsconfig.build.json --watch",
|
|---|
| 27 | "lint": "eslint .",
|
|---|
| 28 | "lint:fix": "eslint . --fix",
|
|---|
| 29 | "test": "is-ci test:coverage test:watch",
|
|---|
| 30 | "test:coverage": "jest --coverage",
|
|---|
| 31 | "test:watch": "jest --watch"
|
|---|
| 32 | },
|
|---|
| 33 | "devDependencies": {
|
|---|
| 34 | "@types/jest": "^27.0.3",
|
|---|
| 35 | "@types/node": "^16.11.9",
|
|---|
| 36 | "@typescript-eslint/eslint-plugin": "^5.4.0",
|
|---|
| 37 | "@typescript-eslint/parser": "^5.4.0",
|
|---|
| 38 | "esbuild": "^0.13.15",
|
|---|
| 39 | "esbuild-runner": "^2.2.1",
|
|---|
| 40 | "eslint": "^8.2.0",
|
|---|
| 41 | "eslint-config-prettier": "^8.3.0",
|
|---|
| 42 | "eslint-plugin-prettier": "^4.0.0",
|
|---|
| 43 | "is-ci-cli": "^2.2.0",
|
|---|
| 44 | "jest": "^27.3.1",
|
|---|
| 45 | "prettier": "^2.4.1",
|
|---|
| 46 | "semantic-release": "^18.0.0",
|
|---|
| 47 | "typescript": "^4.5.2"
|
|---|
| 48 | }
|
|---|
| 49 | }
|
|---|