UNPKG

905 BJSONView Raw
1{
2 "name": "read-pkg",
3 "version": "7.0.0",
4 "description": "Read a package.json file",
5 "license": "MIT",
6 "repository": "sindresorhus/read-pkg",
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": "./index.js",
15 "engines": {
16 "node": ">=12.20"
17 },
18 "scripts": {
19 "test": "xo && ava && tsd"
20 },
21 "files": [
22 "index.js",
23 "index.d.ts"
24 ],
25 "keywords": [
26 "json",
27 "read",
28 "parse",
29 "file",
30 "fs",
31 "graceful",
32 "load",
33 "package",
34 "normalize"
35 ],
36 "dependencies": {
37 "@types/normalize-package-data": "^2.4.1",
38 "normalize-package-data": "^3.0.2",
39 "parse-json": "^5.2.0",
40 "type-fest": "^2.0.0"
41 },
42 "devDependencies": {
43 "ava": "^3.15.0",
44 "tsd": "^0.17.0",
45 "xo": "^0.44.0"
46 },
47 "xo": {
48 "ignores": [
49 "test/test.js"
50 ]
51 }
52}