-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
89 lines (89 loc) · 3.13 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "ancesdir",
"version": "6.0.0",
"description": "Find a specific ancestor/root directory given a starting location and a search parameter",
"types": "dist/index.d.ts",
"main": "dist/index.js",
"module": "dist/es/index.js",
"repository": "https://github.com/somewhatabstract/ancesdir.git",
"bugs": {
"url": "https://github.com/somewhatabstract/ancesdir/issues"
},
"author": "Jeff Yates <[email protected]>",
"license": "MIT",
"private": false,
"engines": {
"node": ">=20",
"npm": "please-use-yarn",
"yarn": ">=1.18.0 <2"
},
"keywords": [
"find",
"ancestor",
"utility",
"root",
"directory",
"folder",
"project",
"repository"
],
"files": [
"dist"
],
"dependencies": {},
"devDependencies": {
"@babel/cli": "^7.24.7",
"@babel/core": "^7.24.7",
"@babel/eslint-parser": "^7.24.7",
"@babel/eslint-plugin": "^7.24.7",
"@babel/preset-env": "^7.24.7",
"@babel/preset-typescript": "^7.24.7",
"@changesets/cli": "^2.27.5",
"@eslint/compat": "^1.1.0",
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.5.0",
"@khanacademy/eslint-config": "^4.0.0",
"@khanacademy/eslint-plugin": "^3.0.0",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^26.0.1",
"@rollup/plugin-node-resolve": "^15.2.3",
"@types/jest": "^29.5.12",
"@types/node": "^20.14.2",
"@typescript-eslint/eslint-plugin": "^7.13.0",
"@typescript-eslint/parser": "^7.13.0",
"babel-jest": "^29.7.0",
"eslint": "^9.5.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jest": "^28.6.0",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.34.2",
"globals": "^15.4.0",
"jest": "^29.7.0",
"jest-extended": "^4.0.2",
"prettier": "^3.3.2",
"rollup": "^4.18.0",
"rollup-plugin-filesize": "^10.0.0",
"rollup-plugin-terser": "^7.0.2",
"typescript": "^5.4.5"
},
"resolutions": {
"nanomatch/kind-of": "^6.0.3",
"micromatch/kind-of": "^6.0.3",
"is-descriptor/kind-of": "^6.0.3"
},
"scripts": {
"prepublishOnly": "yarn clean && yarn build",
"clean": "rm -rf dist",
"build": "yarn test && rollup -c && yarn build:types",
"build:types": "tsc --emitDeclarationOnly --declaration --project tsconfig-types.json",
"test": "jest --colors --config jest.config.js",
"coverage": "jest --colors --config jest.config.js --coverage",
"typecheck": "tsc --noEmit --project tsconfig.json",
"lint": "eslint --report-unused-disable-directives --config eslint.config.mjs \"{src,bin,__{tests,mocks}__}/**/*.ts\"",
"publish:ci": "git diff --stat --exit-code HEAD && yarn build && changeset publish"
}
}