-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
50 lines (50 loc) · 1.11 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
{
"name": "draxt",
"version": "1.3.0",
"description": "jQuery/NodeList-like module for file system (nodejs)",
"author": "Ram Hejazi",
"main": "src/draxt.js",
"scripts": {
"test": "nyc --reporter=text --reporter=html ./node_modules/mocha/bin/mocha test/*"
},
"homepage": "https://github.com/ramhejazi/draxt",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/ramhejazi/draxt.git"
},
"keywords": [
"fs",
"file",
"file system",
"directory",
"folder",
"read",
"write",
"move",
"mv",
"cp",
"copy",
"jquery",
"node",
"chainable",
"collection",
"utility",
"plugin"
],
"bugs": {
"url": "https://github.com/ramhejazi/draxt/issues"
},
"engines": {
"node": "20 || >=22"
},
"dependencies": {
"fs-extra": "^11.2.0",
"glob": "^11.0.0"
},
"devDependencies": {
"chai": "^4.3.10",
"mocha": "^9.2.2",
"nyc": "^15.1.0"
}
}