| 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
33
34
35
36
37
38
39
40
41
42
43
44
45
 | | { |  |     "name": "parse-json", |  |     "version": "5.2.0", |  |     "description": "Parse JSON with more helpful errors", |  |     "license": "MIT", |  |     "repository": "sindresorhus/parse-json", |  |     "funding": "https://github.com/sponsors/sindresorhus", |  |     "author": { |  |         "name": "Sindre Sorhus", |  |         "email": "sindresorhus@gmail.com", |  |         "url": "https://sindresorhus.com" |  |     }, |  |     "engines": { |  |         "node": ">=8" |  |     }, |  |     "scripts": { |  |         "test": "xo && nyc ava" |  |     }, |  |     "files": [ |  |         "index.js", |  |         "vendor" |  |     ], |  |     "keywords": [ |  |         "parse", |  |         "json", |  |         "graceful", |  |         "error", |  |         "message", |  |         "humanize", |  |         "friendly", |  |         "helpful", |  |         "string" |  |     ], |  |     "dependencies": { |  |         "@babel/code-frame": "^7.0.0", |  |         "error-ex": "^1.3.1", |  |         "json-parse-even-better-errors": "^2.3.0", |  |         "lines-and-columns": "^1.1.6" |  |     }, |  |     "devDependencies": { |  |         "ava": "^1.4.1", |  |         "nyc": "^14.1.1", |  |         "xo": "^0.24.0" |  |     } |  | } | 
 |