UNPKG

977 BJSONView Raw
1{
2 "name": "parse-json",
3 "version": "8.1.0",
4 "description": "Parse JSON with more helpful errors",
5 "license": "MIT",
6 "repository": "sindresorhus/parse-json",
7 "funding": "https://github.com/sponsors/sindresorhus",
8 "author": {
9 "name": "Sindre Sorhus",
10 "email": "sindresorhus@gmail.com",
11 "url": "https://sindresorhus.com"
12 },
13 "type": "module",
14 "exports": {
15 "types": "./index.d.ts",
16 "default": "./index.js"
17 },
18 "sideEffects": false,
19 "engines": {
20 "node": ">=18"
21 },
22 "scripts": {
23 "test": "xo && nyc ava && tsd"
24 },
25 "files": [
26 "index.js",
27 "index.d.ts"
28 ],
29 "keywords": [
30 "parse",
31 "json",
32 "graceful",
33 "error",
34 "message",
35 "humanize",
36 "friendly",
37 "helpful",
38 "string"
39 ],
40 "dependencies": {
41 "@babel/code-frame": "^7.22.13",
42 "index-to-position": "^0.1.2",
43 "type-fest": "^4.7.1"
44 },
45 "devDependencies": {
46 "ava": "^5.3.1",
47 "nyc": "^15.1.0",
48 "outdent": "^0.8.0",
49 "strip-ansi": "^7.1.0",
50 "tsd": "^0.29.0",
51 "xo": "^0.56.0"
52 }
53}