-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.46 KB
/
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "fd-package-json",
"version": "1.2.0",
"description": "Utilities for finding the closest package.json file",
"files": [
"lib",
"!lib/test"
],
"scripts": {
"clean": "rimraf dist lib",
"build": "npm run clean && tsc",
"lint:format": "prettier --check src",
"format": "prettier --write src",
"lint": "npm run lint:format && eslint src",
"test": "c8 node --test lib/**/*_test.js",
"prepare": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/es-tooling/fd-package-json.git"
},
"keywords": [
"package-json",
"find-pkg",
"pkg-up",
"find-up",
"find",
"walk",
"parents",
"parent"
],
"author": "James Garbutt (https://github.com/43081j)",
"license": "MIT",
"bugs": {
"url": "https://github.com/es-tooling/fd-package-json/issues"
},
"homepage": "https://github.com/es-tooling/fd-package-json#readme",
"devDependencies": {
"@eslint/js": "^8.57.0",
"@types/node": "^20.11.24",
"c8": "^10.1.2",
"eslint": "^8.57.0",
"eslint-config-google": "^0.14.0",
"prettier": "^3.2.5",
"rimraf": "^5.0.5",
"typescript": "^5.3.3",
"typescript-eslint": "^7.1.0"
},
"exports": {
".": {
"import": {
"default": "./lib/main.js"
}
},
"./package.json": "./package.json"
},
"type": "module",
"main": "./lib/main.js",
"types": "./lib/main.d.ts",
"dependencies": {
"walk-up-path": "^3.0.1"
}
}