package.json
 1  {
 2  	"name": "parse-json",
 3  	"version": "5.2.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  	"engines": {
14  		"node": ">=8"
15  	},
16  	"scripts": {
17  		"test": "xo && nyc ava"
18  	},
19  	"files": [
20  		"index.js",
21  		"vendor"
22  	],
23  	"keywords": [
24  		"parse",
25  		"json",
26  		"graceful",
27  		"error",
28  		"message",
29  		"humanize",
30  		"friendly",
31  		"helpful",
32  		"string"
33  	],
34  	"dependencies": {
35  		"@babel/code-frame": "^7.0.0",
36  		"error-ex": "^1.3.1",
37  		"json-parse-even-better-errors": "^2.3.0",
38  		"lines-and-columns": "^1.1.6"
39  	},
40  	"devDependencies": {
41  		"ava": "^1.4.1",
42  		"nyc": "^14.1.1",
43  		"xo": "^0.24.0"
44  	}
45  }