-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 885 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 885 Bytes
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
{
"name": "node-walkdir",
"version": "1.0.0",
"description": "node walkdir",
"main": "index.js",
"scripts": {
"test": "nyc ava",
"test-cov": "nyc --reporter=html --reporter=text ava",
"coveralls": "nyc report --reporter=text-lcov | coveralls"
},
"repository": {
"type": "git",
"url": "git+https://github.com/52cik/node-walkdir.git"
},
"keywords": [],
"author": "楼教主 <fe.52cik@gmail.com> (http://www.52cik.com/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/52cik/node-walkdir/issues"
},
"homepage": "https://github.com/52cik/node-walkdir#readme",
"devDependencies": {
"ava": "^0.25.0",
"coveralls": "^3.0.0",
"eslint": "^4.17.0",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.8.0",
"mock-fs": "^4.4.2",
"nyc": "^11.4.1"
},
"engines": {
"node": ">=8"
}
}