-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 901 Bytes
/
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
{
"name": "readdir-sorted",
"version": "3.0.0",
"description": "Like `fs.promise.readdir()`, but sorts the result based on `String#localeCompare()`",
"author": "Watanabe Shinnosuke (https://github.com/shinnn)",
"repository": "shinnn/readdir-sorted",
"license": "ISC",
"scripts": {
"pretest": "eslint .",
"test": "coverage test/test.js"
},
"files": [
"index.js"
],
"keywords": [
"directory",
"readdir",
"file",
"files",
"fs",
"list",
"enumerate",
"array",
"sort",
"sorted",
"order",
"locale",
"compare",
"alphabetical",
"a-to-z",
"promise",
"async",
"asynchronous"
],
"dependencies": {
"inspect-with-kind": "^1.0.5",
"is-plain-obj": "^2.0.0"
},
"devDependencies": {
"@shinnn/eslint-config": "^6.10.2",
"coverage": "^0.1.5",
"eslint": "^5.16.0",
"junk": "^3.1.0",
"tape": "^4.9.1"
},
"eslintConfig": {
"extends": "@shinnn"
}
}