-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
41 lines (41 loc) · 937 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
{
"name": "empty-file",
"version": "1.0.1",
"description": "Write an empty file asynchronously",
"repository": "shinnn/empty-file",
"author": "Shinnosuke Watanabe (https://github.com/shinnn)",
"scripts": {
"pretest": "eslint --config @shinnn/node-legacy index.js test/test.js",
"test": "node --throw-deprecation --track-heap-objects test.js",
"coverage": "istanbul cover test.js"
},
"license": "ISC",
"files": [
"index.js"
],
"keywords": [
"fs",
"file",
"write",
"blank",
"clean",
"empty",
"promise",
"promises",
"async",
"asynchronous",
"asynchronously"
],
"dependencies": {
"empty-file-callback": "^1.0.0",
"pinkie-promise": "^2.0.0"
},
"devDependencies": {
"@shinnn/eslint-config-node-legacy": "^3.0.0",
"eslint": "^3.4.0",
"graceful-fs": "^4.1.6",
"istanbul": "^0.4.5",
"pify": "^2.3.0",
"tape": "^4.6.0"
}
}