-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.65 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 1.65 KB
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
51
{
"name": "node-fs",
"description": "node-fs is an extension to the original nodejs fs library, offering new functionalities.",
"version": "0.1.7",
"author": {
"name": "Bruno Pedro",
"email": "bpedro@tarpipe.com"
},
"repository": {
"type": "git",
"url": "git://github.com/bpedro/node-fs.git"
},
"os": [
"linux",
"darwin",
"freebsd",
"win32",
"smartos",
"sunos"
],
"devDependencies": {
"expresso": "*"
},
"scripts": {
"test": "expresso -q"
},
"directories": {
"lib": "./lib/"
},
"main": "./lib/fs",
"engines": {
"node": ">=0.1.97"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/bpedro/node-fs/raw/master/LICENSE"
}
],
"readme": "node-fs is an extension to the original [nodejs](http://nodejs.org) [fs library](http://nodejs.org/docs/v0.3.1/api/fs.html), offering new functionalities. See example.js for an example of how to use it.\n\nRight now, the following new operations are supported:\n\n* mkdir(path, mode, [recursive], [callback]): if the 'recursive' parameter is true, creates a directory recursively;\n* mkdirSync(path, mode, [recursive]): if the 'recursive' parameter is true, synchronously creates a directory recursively.\n\n[](http://travis-ci.org/bpedro/node-fs)\n",
"readmeFilename": "README.md",
"bugs": {
"url": "https://github.com/bpedro/node-fs/issues"
},
"_id": "node-fs@0.1.7",
"dist": {
"shasum": "872b3042739bd6c20261a529527392deff211f11"
},
"_from": "node-fs@",
"_resolved": "https://registry.npmjs.org/node-fs/-/node-fs-0.1.7.tgz"
}