-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 960 Bytes
/
package.json
File metadata and controls
44 lines (44 loc) · 960 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
35
36
37
38
39
40
41
42
43
44
{
"name": "fs-extra-plus",
"type": "module",
"version": "0.6.0",
"description": "A extension of fs-extra with .glob(), .saferRemove()",
"main": "dist/index.js",
"typings": "types/index.d.ts",
"repository": {
"type": "git",
"url": "git://github.com/BriteSnow/node-fs-extra-plus.git"
},
"files": [
"src/",
"dist/",
"types/"
],
"keywords": [
"fs",
"file",
"fs-extra",
"list files",
"watch"
],
"dependencies": {
"@types/fs-extra": "^9.0.13",
"fast-glob": "^3.2.7",
"fs-extra": "^10.0.0"
},
"devDependencies": {
"@types/mocha": "^9.0.0",
"mocha": "^9.1.3",
"ts-node": "^10.4.0",
"typescript": "^4.5.2"
},
"engines": {
"node": ">=8.0.0"
},
"scripts": {
"test": "TS_NODE_PROJECT='test/tsconfig.json' ./node_modules/.bin/mocha",
"prepare": "tsc"
},
"author": "Jeremy Chone <jeremy.chone@gmail.com> (http://jeremychone.com)",
"license": "MIT"
}