-
Notifications
You must be signed in to change notification settings - Fork 41
/
Copy pathpackage.json
39 lines (39 loc) · 835 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
{
"name": "klaw",
"version": "4.1.0",
"description": "File system walker with Readable stream interface.",
"main": "./src/index.js",
"scripts": {
"lint": "standard",
"test": "npm run lint && npm run unit",
"unit": "tape tests/**/*.js | tap-spec"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jprichardson/node-klaw.git"
},
"keywords": [
"walk",
"walker",
"fs",
"readable",
"streams"
],
"engines": {
"node": ">=14.14.0"
},
"author": "JP Richardson",
"license": "MIT",
"files": [
"src/"
],
"bugs": {
"url": "https://github.com/jprichardson/node-klaw/issues"
},
"homepage": "https://github.com/jprichardson/node-klaw#readme",
"devDependencies": {
"standard": "^16.0.3",
"tap-spec": "^5.0.0",
"tape": "^5.3.1"
}
}