-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
44 lines (44 loc) · 899 Bytes
/
package.json
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
{
"name": "parent-package-json",
"version": "3.0.0",
"description": "Find, read and parse the package.json of the parent module",
"main": "build/lib/index.js",
"scripts": {
"build": "tsc",
"test": "rome ci lib && vitest --run",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/maxrimue/parent-package-json.git"
},
"keywords": [
"parent",
"package.json",
"find",
"search",
"parse",
"read"
],
"files": [
"build",
"readme.md",
"license"
],
"devDependencies": {
"@types/node": "20.2.5",
"rome": "12.1.2",
"typescript": "5.0.4",
"vitest": "0.31.1"
},
"engines": {
"node": ">= 18.0.0"
},
"author": "Max Rittmüller",
"license": "ISC",
"bugs": {
"url": "https://github.com/maxrimue/parentPackageJSON/issues"
},
"homepage": "https://github.com/maxrimue/parentPackageJSON#readme",
"type": "module"
}