2020-04-28 17:46:47 +03:00
|
|
|
{
|
2020-05-04 20:50:13 +03:00
|
|
|
"name": "temp-dir",
|
2023-01-18 23:50:03 +03:00
|
|
|
"version": "3.0.0",
|
2020-05-04 20:50:13 +03:00
|
|
|
"description": "Get the real path of the system temp directory",
|
2020-05-12 14:11:25 +03:00
|
|
|
"license": "MIT",
|
2020-05-04 20:50:13 +03:00
|
|
|
"repository": "sindresorhus/temp-dir",
|
2020-04-28 17:46:47 +03:00
|
|
|
"author": {
|
|
|
|
"name": "Sindre Sorhus",
|
|
|
|
"email": "sindresorhus@gmail.com",
|
2023-01-18 23:50:03 +03:00
|
|
|
"url": "https://sindresorhus.com"
|
2020-04-28 17:46:47 +03:00
|
|
|
},
|
2023-01-18 23:50:03 +03:00
|
|
|
"type": "module",
|
|
|
|
"exports": "./index.js",
|
|
|
|
"types": "./index.d.ts",
|
2020-04-28 17:46:47 +03:00
|
|
|
"engines": {
|
2023-01-18 23:50:03 +03:00
|
|
|
"node": ">=14.16"
|
2020-04-28 17:46:47 +03:00
|
|
|
},
|
2020-05-12 14:11:25 +03:00
|
|
|
"scripts": {
|
|
|
|
"test": "xo && ava && tsd"
|
|
|
|
},
|
2020-04-28 17:46:47 +03:00
|
|
|
"files": [
|
|
|
|
"index.js",
|
|
|
|
"index.d.ts"
|
|
|
|
],
|
|
|
|
"keywords": [
|
2020-05-04 20:50:13 +03:00
|
|
|
"temp",
|
|
|
|
"tmpdir",
|
|
|
|
"os",
|
|
|
|
"system",
|
|
|
|
"real",
|
|
|
|
"path",
|
|
|
|
"realpath",
|
|
|
|
"resolved",
|
|
|
|
"temporary",
|
|
|
|
"directory",
|
|
|
|
"folder"
|
2020-04-28 17:46:47 +03:00
|
|
|
],
|
2020-05-12 14:11:25 +03:00
|
|
|
"devDependencies": {
|
2023-01-18 23:50:03 +03:00
|
|
|
"ava": "^4.3.3",
|
|
|
|
"quibble": "^0.6.14",
|
|
|
|
"tsd": "^0.24.1",
|
|
|
|
"xo": "^0.52.3"
|
|
|
|
},
|
|
|
|
"ava": {
|
|
|
|
"nodeArguments": [
|
|
|
|
"--loader=quibble"
|
|
|
|
]
|
2020-05-12 14:11:25 +03:00
|
|
|
}
|
2022-02-24 20:03:29 +03:00
|
|
|
}
|