UNPKG

936 BJSONView Raw
1{
2 "name": "@mischnic/json-sourcemap",
3 "version": "0.1.0",
4 "license": "MIT",
5 "description": "Generate positions for values in JSON and JSON5 strings",
6 "repository": {
7 "type": "git",
8 "url": "https://github.com/mischnic/json-sourcemap"
9 },
10 "publishConfig": {
11 "access": "public"
12 },
13 "main": "dist/index.js",
14 "sideEffects": true,
15 "scripts": {
16 "watch": "parcel watch index.js --no-source-maps",
17 "build": "parcel build index.js --no-source-maps",
18 "run-watch": "nodemon experiment.js",
19 "test": "mocha"
20 },
21 "devDependencies": {
22 "json-pointer": "^0.6.2",
23 "json-source-map": "^0.6.1",
24 "mocha": "^9.2.2",
25 "parcel": "^2.0.0",
26 "parcel-reporter-static-files-copy": "^1.3.4",
27 "parcel-transformer-lezer": "^0.1.2"
28 },
29 "dependencies": {
30 "@lezer/common": "^0.15.7",
31 "@lezer/lr": "^0.15.4",
32 "json5": "^2.2.1"
33 },
34 "files": [
35 "dist"
36 ],
37 "engines": {
38 "node": ">=12.0.0"
39 },
40 "targets": {
41 "types": false
42 }
43}