-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
86 lines (86 loc) · 2.22 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
{
"name": "find-files-by-patterns",
"sideEffects": false,
"packageManager": "yarn@3.2.0",
"version": "2.0.3",
"description": "Find files by patterns in directories, upwards or downwards from other paths.",
"license": "MIT",
"author": "Marc-Antoine Ouimet <ouimetmarcantoine@gmail.com>",
"repository": {
"type": "git",
"url": "https://github.com/MartyO256/find-files-by-patterns.git"
},
"homepage": "https://github.com/MartyO256/find-files-by-patterns#readme",
"bugs": {
"url": "https://github.com/MartyO256/find-files-by-patterns/issues",
"email": "ouimetmarcantoine@gmail.com"
},
"type": "module",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"files": [
"lib"
],
"engineStrict": true,
"engines": {
"node": ">=10.0.0 || ^10.15.1"
},
"scripts": {
"format": "prettier --write \"./{src,test}/**/*.ts\"",
"lint": "eslint --fix \"./{src,test}/**/*.ts\"",
"build": "tsc --project tsconfig.build.json",
"doc": "typedoc --out ./doc/ ./src",
"test": "mocha",
"test:watch": "mocha --watch-extensions ts --watch",
"coverage": "c8 --reporter text --reporter lcov npm run test"
},
"keywords": [
"find-files",
"find-up",
"find-down",
"patterns",
"walk",
"walking",
"search",
"files",
"directories",
"iterable"
],
"devDependencies": {
"@types/chai": "^4.3.1",
"@types/mocha": "^9.1.1",
"@types/mock-fs": "^4.13.1",
"@types/node": "^12.20.50",
"@typescript-eslint/eslint-plugin": "^5.22.0",
"@typescript-eslint/parser": "^5.22.0",
"c8": "^7.11.2",
"chai": "^4.3.6",
"coveralls": "^3.1.1",
"eslint": "^8.15.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"markdown-toc": "^1.2.0",
"markdownlint-cli": "^0.31.1",
"mocha": "^10.0.0",
"mock-fs": "^5.1.2",
"prettier": "^2.6.2",
"source-map-support": "^0.5.21",
"ts-node": "^10.9.1",
"typedoc": "^0.22.15",
"typescript": "^4.6.4"
},
"mocha": {
"node-option": [
"experimental-specifier-resolution=node",
"loader=ts-node/esm"
],
"full-trace": true,
"bail": true,
"extension": [
"ts"
],
"spec": [
"test/**/*.spec.ts"
]
}
}