-
Notifications
You must be signed in to change notification settings - Fork 44
/
package.json
42 lines (42 loc) · 986 Bytes
/
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
{
"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": "2.1.1",
"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": ">= 8.0.0"
},
"dependencies": {
"nan": "^2.21.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": "node ./run_tests",
"lint": "node ./node_modules/eslint/bin/eslint \"*.js\" \"tests/**/*.js\"",
"cover": "NODE_ENV=cov ./node_modules/.bin/istanbul cover node ./run_tests"
},
"devDependencies": {
"eslint": "^5.9.0"
}
}