-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
54 lines (54 loc) · 971 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
43
44
45
46
47
48
49
50
51
52
53
54
{
"name": "with-open-file",
"version": "0.1.7",
"description": "Do stuff with an open file, knowing it will finally be closed",
"repository": "raphinesse/with-open-file",
"license": "MIT",
"author": {
"name": "Raphael von der Grün",
"email": "[email protected]"
},
"files": [
"index.js"
],
"xo": {
"space": 2,
"prettier": true
},
"prettier": {
"bracketSpacing": true,
"semi": false,
"singleQuote": true,
"trailingComma": "es5"
},
"scripts": {
"test": "xo && nyc ava"
},
"dependencies": {
"p-finally": "^1.0.0",
"p-try": "^2.1.0",
"pify": "^4.0.1"
},
"devDependencies": {
"ava": "^1.4.1",
"delay": "^4.1.0",
"nyc": "^14.1.1",
"rewire": "^4.0.1",
"sinon": "^7.3.1",
"xo": "^0.24.0"
},
"engines": {
"node": ">=6"
},
"keywords": [
"node",
"node.js",
"close",
"fd",
"file",
"finally",
"fs",
"open",
"with"
]
}