-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
57 lines (57 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
{
"name": "@wixc3/resolve-directory-context",
"description": "Helpers to get information about single/multi-package contexts",
"version": "4.0.0",
"main": "./dist/index.js",
"scripts": {
"clean": "node -e \"fs.rmSync('./dist', { recursive: true, force: true })\"",
"prebuild": "npm run clean",
"build": "tsc -p tsconfig.build.json",
"pretest": "npm run typecheck",
"test": "npm run test:node && npm run test:browser",
"test:node": "mocha \"./test/**/*.{spec,nodespec}.ts\"",
"test:browser": "mocha-web \"./test/**/*.spec.ts\"",
"lint": "eslint . -f codeframe",
"prepack": "npm run build",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"minimatch": "^9.0.5",
"type-fest": "^4.32.0"
},
"devDependencies": {
"@file-services/memory": "^9.4.1",
"@file-services/path": "^9.4.1",
"@playwright/browser-chromium": "^1.49.1",
"@ts-tools/node": "^6.1.0",
"@types/chai": "^4.3.20",
"@types/mocha": "^10.0.10",
"@types/node": "20",
"chai": "^4.4.1",
"esbuild": "^0.24.2",
"mocha": "^11.0.1",
"mocha-web": "^2.0.1",
"typescript": "~5.7.3"
},
"files": [
"bin",
"dist",
"src"
],
"engines": {
"node": ">=20"
},
"keywords": [
"packages",
"directory",
"workspace",
"npm",
"yarn"
],
"publishConfig": {
"access": "public"
},
"author": "Wix.com",
"license": "MIT",
"repository": "[email protected]:wixplosives/resolve-directory-context.git"
}