Changeset e29cc2e for trip-planner-front/node_modules/lines-and-columns
- Timestamp:
- 11/25/21 22:08:24 (3 years ago)
- Branches:
- master
- Children:
- 8d391a1
- Parents:
- 59329aa
- Location:
- trip-planner-front/node_modules/lines-and-columns
- Files:
-
- 2 added
- 3 deleted
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trip-planner-front/node_modules/lines-and-columns/README.md
r59329aa re29cc2e 14 14 15 15 ```js 16 import LinesAndColumns from 'lines-and-columns';16 import { LinesAndColumns } from 'lines-and-columns' 17 17 18 18 const lines = new LinesAndColumns( 19 `table {19 `table { 20 20 border: 0 21 }`); 21 }` 22 ) 22 23 23 lines.locationForIndex(9); // { line: 1, column: 1 } 24 lines.indexForLocation({ line: 1, column: 2 }); // 10 24 lines.locationForIndex(9) 25 // { line: 1, column: 1 } 26 27 lines.indexForLocation({ line: 1, column: 2 }) 28 // 10 25 29 ``` 26 30 -
trip-planner-front/node_modules/lines-and-columns/package.json
r59329aa re29cc2e 1 1 { 2 "_args": [ 3 [ 4 "lines-and-columns@1.1.6", 5 "C:\\Users\\DELL\\Desktop\\bachelor-thesis\\trip-planner-front" 6 ] 7 ], 8 "_development": true, 9 "_from": "lines-and-columns@1.1.6", 10 "_id": "lines-and-columns@1.1.6", 2 "_from": "lines-and-columns@^1.1.6", 3 "_id": "lines-and-columns@1.2.4", 11 4 "_inBundle": false, 12 "_integrity": "sha 1-HADHQ7QzzQpOgHWPe2SldEDZ/wA=",5 "_integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==", 13 6 "_location": "/lines-and-columns", 14 7 "_phantomChildren": {}, 15 8 "_requested": { 16 "type": " version",9 "type": "range", 17 10 "registry": true, 18 "raw": "lines-and-columns@ 1.1.6",11 "raw": "lines-and-columns@^1.1.6", 19 12 "name": "lines-and-columns", 20 13 "escapedName": "lines-and-columns", 21 "rawSpec": " 1.1.6",14 "rawSpec": "^1.1.6", 22 15 "saveSpec": null, 23 "fetchSpec": " 1.1.6"16 "fetchSpec": "^1.1.6" 24 17 }, 25 18 "_requiredBy": [ 26 19 "/parse-json" 27 20 ], 28 "_resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.1.6.tgz", 29 "_spec": "1.1.6", 30 "_where": "C:\\Users\\DELL\\Desktop\\bachelor-thesis\\trip-planner-front", 21 "_resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz", 22 "_shasum": "eca284f75d2965079309dc0ad9255abb2ebc1632", 23 "_spec": "lines-and-columns@^1.1.6", 24 "_where": "C:\\Users\\DELL\\Desktop\\bachelor-thesis\\trip-planner-front\\node_modules\\parse-json", 31 25 "author": { 32 26 "name": "Brian Donovan", 33 "email": " me@brian-donovan.com"27 "email": "brian@donovans.cc" 34 28 }, 35 29 "bugs": { 36 30 "url": "https://github.com/eventualbuddha/lines-and-columns/issues" 37 31 }, 32 "bundleDependencies": false, 33 "deprecated": false, 38 34 "description": "Maps lines and columns to character offsets and back.", 39 35 "devDependencies": { 40 "@types/mocha": "^2.2.34", 41 "@types/node": "^6.0.52", 42 "mocha": "^3.2.0", 43 "semantic-release": "^6.3.2", 44 "ts-node": "^1.7.2", 45 "tslint": "^4.1.1", 46 "typescript": "^2.1.4" 36 "@types/jest": "^27.0.3", 37 "@types/node": "^16.11.9", 38 "@typescript-eslint/eslint-plugin": "^5.4.0", 39 "@typescript-eslint/parser": "^5.4.0", 40 "esbuild": "^0.13.15", 41 "esbuild-runner": "^2.2.1", 42 "eslint": "^8.2.0", 43 "eslint-config-prettier": "^8.3.0", 44 "eslint-plugin-prettier": "^4.0.0", 45 "is-ci-cli": "^2.2.0", 46 "jest": "^27.3.1", 47 "prettier": "^2.4.1", 48 "semantic-release": "^18.0.0", 49 "typescript": "^4.5.2" 47 50 }, 48 51 "files": [ 49 " dist"52 "build" 50 53 ], 51 54 "homepage": "https://github.com/eventualbuddha/lines-and-columns#readme", … … 56 59 ], 57 60 "license": "MIT", 58 "main": "dist/index.js", 59 "module": "dist/index.mjs", 61 "main": "./build/index.js", 60 62 "name": "lines-and-columns", 61 63 "repository": { … … 64 66 }, 65 67 "scripts": { 66 "build": "./script/build", 67 "lint": "tslint --config tslint.json --project tsconfig.json --type-check", 68 "lint-fix": "tslint --config tslint.json --project tsconfig.json --type-check --fix", 69 "prebuild": "rm -rf dist", 70 "prepublish": "npm run lint && npm run build", 71 "pretest": "npm run build", 72 "semantic-release": "semantic-release pre && npm publish && semantic-release post", 73 "test": "mocha" 68 "build:watch": "tsc --build tsconfig.build.json --watch", 69 "lint": "eslint .", 70 "lint:fix": "eslint . --fix", 71 "test": "is-ci test:coverage test:watch", 72 "test:coverage": "jest --coverage", 73 "test:watch": "jest --watch" 74 74 }, 75 "types": " dist/index.d.ts",76 "version": "1. 1.6"75 "types": "./build/index.d.ts", 76 "version": "1.2.4" 77 77 }
Note:
See TracChangeset
for help on using the changeset viewer.