-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.07 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.07 KB
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
{
"name": "temp-write-sync",
"version": "1.0.0",
"description": "Write temporary files synchronously with automatic cleanup. Simpler than complex temp file libraries.",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage"
},
"keywords": [
"temp",
"temporary",
"file",
"sync",
"synchronous",
"cleanup",
"tmpfile",
"filesystem",
"write"
],
"author": "Abderrahim GHAZALI",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/abderrahimghazali/temp-write-sync.git"
},
"bugs": {
"url": "https://github.com/abderrahimghazali/temp-write-sync/issues"
},
"homepage": "https://github.com/abderrahimghazali/temp-write-sync#readme",
"engines": {
"node": ">=12.0.0"
},
"files": [
"index.js",
"index.d.ts",
"README.md"
],
"devDependencies": {
"jest": "^29.0.0",
"@types/jest": "^29.0.0"
}
}