source: trip-planner-front/node_modules/type-fest/package.json@ ceaed42

Last change on this file since ceaed42 was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago

initial commit

  • Property mode set to 100644
File size: 1.0 KB
Line 
1{
2 "name": "type-fest",
3 "version": "0.21.3",
4 "description": "A collection of essential TypeScript types",
5 "license": "(MIT OR CC0-1.0)",
6 "repository": "sindresorhus/type-fest",
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 && tsd && tsc"
18 },
19 "files": [
20 "index.d.ts",
21 "base.d.ts",
22 "source",
23 "ts41"
24 ],
25 "keywords": [
26 "typescript",
27 "ts",
28 "types",
29 "utility",
30 "util",
31 "utilities",
32 "omit",
33 "merge",
34 "json"
35 ],
36 "devDependencies": {
37 "@sindresorhus/tsconfig": "~0.7.0",
38 "expect-type": "^0.11.0",
39 "tsd": "^0.14.0",
40 "typescript": "^4.1.3",
41 "xo": "^0.36.1"
42 },
43 "types": "./index.d.ts",
44 "typesVersions": {
45 ">=4.1": {
46 "*": [
47 "ts41/*"
48 ]
49 }
50 },
51 "xo": {
52 "rules": {
53 "@typescript-eslint/ban-types": "off",
54 "@typescript-eslint/indent": "off",
55 "node/no-unsupported-features/es-builtins": "off"
56 }
57 }
58}
Note: See TracBrowser for help on using the repository browser.