source: frontend/node_modules/tempy/package.json

Last change on this file was 9af201e, checked in by MBK <marija.karapandzova@…>, 12 days ago

Fix frontend appearance

  • Property mode set to 100644
File size: 923 bytes
Line 
1{
2 "name": "tempy",
3 "version": "0.6.0",
4 "description": "Get a random temporary file or directory path",
5 "license": "MIT",
6 "repository": "sindresorhus/tempy",
7 "funding": "https://github.com/sponsors/sindresorhus",
8 "author": {
9 "name": "Sindre Sorhus",
10 "email": "sindresorhus@gmail.com",
11 "url": "https://sindresorhus.com"
12 },
13 "engines": {
14 "node": ">=10"
15 },
16 "scripts": {
17 "test": "xo && ava && tsd"
18 },
19 "files": [
20 "index.js",
21 "index.d.ts"
22 ],
23 "keywords": [
24 "temp",
25 "temporary",
26 "path",
27 "file",
28 "directory",
29 "folder",
30 "tempfile",
31 "tempdir",
32 "tmpdir",
33 "tmpfile",
34 "random",
35 "unique"
36 ],
37 "dependencies": {
38 "is-stream": "^2.0.0",
39 "temp-dir": "^2.0.0",
40 "type-fest": "^0.16.0",
41 "unique-string": "^2.0.0"
42 },
43 "devDependencies": {
44 "ava": "^2.4.0",
45 "tsd": "^0.13.1",
46 "xo": "^0.32.1"
47 },
48 "xo": {
49 "rules": {
50 "node/no-unsupported-features/node-builtins": "off"
51 }
52 }
53}
Note: See TracBrowser for help on using the repository browser.