-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.23 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
{
"name": "@iyowei/fs-deep-walk",
"version": "1.0.0",
"description": "专注于深度扫描指定磁盘位置。",
"main": "index.js",
"scripts": {
"format": "npx prettier '**/*.{js,mjs,json,md}' --write --loglevel error",
"lint": "npx eslint \"**/*.js\"",
"test": "npx mocha '**/*.+(spec|test).js' -p",
"try": "node ./try.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/iyowei/fs-deep-walk.git"
},
"keywords": [
"iyowei"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/iyowei/fs-deep-walk/issues"
},
"homepage": "https://github.com/iyowei/fs-deep-walk#readme",
"type": "module",
"exports": "./index.js",
"files": [
"index.js"
],
"engines": {
"node": ">=12.20.0"
},
"private": false,
"publishConfig": {
"access": "public"
},
"dependencies": {
"@iyowei/is-true": "^1.0.0",
"@iyowei/not-empty-plain-object": "^1.0.0",
"@iyowei/scan-dir-each": "^1.0.2",
"@iyowei/scan-dir-each-sync": "^1.0.1"
},
"devDependencies": {
"eslint": "^8.6.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.4",
"mocha": "^9.1.3",
"prettier": "^2.5.1"
}
}