forked from baudehlo/node-fs-ext
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 955 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 955 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
{
"author": "Matt Sergeant <helpme@gmail.com> (http://baudehlo.wordpress.com/)",
"name": "fs-ext",
"description": "Extensions to core 'fs' module.",
"keywords": ["fs", "filesystem", "flock", "seek"],
"version": "0.5.0",
"homepage": "https://github.com/baudehlo/node-fs-ext/",
"repository": {
"type": "git",
"url": "git://github.com/baudehlo/node-fs-ext.git"
},
"main": "fs-ext.js",
"engines": {
"node": ">= v0.8.0"
},
"dependencies": { "nan": "^2.0" },
"licenses": [ {
"type": "MIT"
} ],
"bugs": {
"mail" : "helpme@gmail.com",
"web" : "https://github.com/baudehlo/node-fs-ext/issues"
},
"scripts": {
"install": "node-gyp configure build",
"test": "./run_tests",
"lint": "node ./node_modules/eslint/bin/eslint \"*.js\" \"tests/**/*.js\"",
"cover": "NODE_ENV=cov ./node_modules/.bin/istanbul cover _mocha"
},
"devDependencies": {
"eslint" : "^2.13.0"
}
}