-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 777 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 777 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
{
"name": "create-temp-file",
"version": "2.0.0",
"description": "Creates a temporary file, returns a write stream, a path, and cleanup functions",
"main": "index.js",
"scripts": {
"test": "tape test/*.js"
},
"repository": {
"type": "git",
"url": "https://github.com/ArtskydJ/create-temp-file"
},
"keywords": [
"stream",
"temp",
"tmp",
"write"
],
"author": "Joseph Dykstra",
"license": "VOL",
"bugs": {
"url": "https://github.com/ArtskydJ/create-temp-file/issues"
},
"homepage": "https://github.com/ArtskydJ/create-temp-file",
"devDependencies": {
"string.prototype.endswith": "^0.2.0",
"string.prototype.startswith": "^0.2.0",
"tape": "^4.0.0"
},
"dependencies": {
"tempfile": "^1.1.1"
}
}