source: trip-planner-front/node_modules/klona/package.json@ 6c1585f

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

initial commit

  • Property mode set to 100644
File size: 1.5 KB
Line 
1{
2 "name": "klona",
3 "version": "2.0.4",
4 "repository": "lukeed/klona",
5 "description": "A tiny (240B to 501B) and fast utility to \"deep clone\" Objects, Arrays, Dates, RegExps, and more!",
6 "module": "dist/index.mjs",
7 "unpkg": "dist/index.min.js",
8 "main": "dist/index.js",
9 "types": "index.d.ts",
10 "license": "MIT",
11 "author": {
12 "name": "Luke Edwards",
13 "email": "luke.edwards05@gmail.com",
14 "url": "https://lukeed.com"
15 },
16 "files": [
17 "*.d.ts",
18 "dist",
19 "full",
20 "json",
21 "lite"
22 ],
23 "exports": {
24 ".": {
25 "import": "./dist/index.mjs",
26 "require": "./dist/index.js"
27 },
28 "./json": {
29 "import": "./json/index.mjs",
30 "require": "./json/index.js"
31 },
32 "./lite": {
33 "import": "./lite/index.mjs",
34 "require": "./lite/index.js"
35 },
36 "./full": {
37 "import": "./full/index.mjs",
38 "require": "./full/index.js"
39 },
40 "./package.json": "./package.json"
41 },
42 "modes": {
43 "json": "src/json.js",
44 "lite": "src/lite.js",
45 "default": "src/index.js",
46 "full": "src/full.js"
47 },
48 "engines": {
49 "node": ">= 8"
50 },
51 "scripts": {
52 "build": "bundt",
53 "pretest": "npm run build",
54 "postbuild": "echo \"lite full json\" | xargs -n1 cp -v index.d.ts",
55 "test": "uvu -r esm test -i suites"
56 },
57 "keywords": [
58 "clone",
59 "copy",
60 "deep",
61 "extend",
62 "recursive",
63 "object"
64 ],
65 "devDependencies": {
66 "bundt": "1.0.2",
67 "esm": "3.2.25",
68 "uvu": "0.3.3"
69 }
70}
Note: See TracBrowser for help on using the repository browser.