forked from m0rtadelo/recursive-readdir-async
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 1.94 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
{
"name": "recursive-readdir-async",
"version": "1.2.1",
"description": "Module to recursive read directory async (non blocking). Must be used with Promises. Configurable, extended filtering. etc.",
"main": "./lib/cjs/index.js",
"module": "./lib/esm/index.js",
"files": [
"lib/"
],
"scripts_old": {
"test": "nyc mocha",
"coverage": "nyc --reporter=lcov --reporter=text-lcov npm test",
"coveralls": "jsdoc module.js -d ./docs -R ./README.md && nyc npm test && nyc report --reporter=text-lcov | coveralls",
"build": "uglifyjs --compress --mangle reserved=[file,path,options,progress] --comments -- module.js > module.min.js && jsdoc module.js -d ./docs -R ./README.md",
"release": "rollup -c",
"lint": "eslint ."
},
"scripts": {
"test": "jest --coverage",
"lint": "eslint ./src --ext .ts",
"lint:fix": "eslint ./src --ext .ts --fix",
"doc": "npx typedoc src/*.ts",
"build": "tsc -p ./tsconfig.json && tsc -p ./tsconfig.cjs.json"
},
"engines": {
"node": ">=7.6"
},
"keywords": [
"recursive",
"readdir",
"directory",
"files",
"listing",
"async",
"await",
"promise",
"callback",
"list",
"tree",
"dir",
"ls",
"commonjs",
"es6"
],
"author": "ricard.figuls",
"bugs": {
"url": "https://github.com/m0rtadelo/recursive-readdir-async/issues"
},
"homepage": "https://m0rtadelo.github.io/recursive-readdir-async/",
"repository": {
"type": "git",
"url": "https://github.com/m0rtadelo/recursive-readdir-async.git"
},
"license": "MIT",
"devDependencies": {
"fs-extra": "^7.0.1",
"jsdoc": "^3.6.4",
"@types/jest": "^27.0.3",
"@types/node": "^16.11.7",
"@typescript-eslint/eslint-plugin": "^5.4.0",
"@typescript-eslint/parser": "^5.4.0",
"eslint": "^8.2.0",
"eslint-config-google": "^0.14.0",
"jest": "^27.3.1",
"ts-jest": "^27.0.7",
"typedoc": "^0.22.9",
"typescript": "^4.4.4"
}
}