codeql-action/node_modules/temp-dir/package.json

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

50 строки
879 B
JSON
Исходник Обычный вид История

{
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",
"author": {
"name": "Sindre Sorhus",
"email": "sindresorhus@gmail.com",
2023-01-18 23:50:03 +03:00
"url": "https://sindresorhus.com"
},
2023-01-18 23:50:03 +03:00
"type": "module",
"exports": "./index.js",
"types": "./index.d.ts",
"engines": {
2023-01-18 23:50:03 +03:00
"node": ">=14.16"
},
2020-05-12 14:11:25 +03:00
"scripts": {
"test": "xo && ava && tsd"
},
"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-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
}