-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.05 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.05 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "deeply-clone",
"version": "1.0.9",
"author": "Ilia Chernetskii <ichernetskii@gmail.com>",
"license": "MIT",
"description": "Deep fast clone JavaScript objects with circular references handling and TypeScript support",
"keywords": [
"copy",
"clone",
"assign",
"deep",
"deep copy",
"fast copy",
"deep-copy",
"fast-copy",
"deep clone",
"fast clone",
"deep-clone",
"fast-clone",
"objects",
"circular",
"recursive",
"ts copy",
"ts clone",
"typescript copy",
"typescript clone",
"object",
"object copy",
"object clone",
"keys",
"values",
"deeply-clone"
],
"homepage": "https://github.com/ichernetskii/deeply-clone#readme",
"repository": {
"type": "git",
"url": "https://github.com/ichernetskii/deeply-clone.git"
},
"bugs": {
"url": "https://github.com/ichernetskii/deeply-clone/issues"
},
"type": "module",
"files": [
"dist/**/*"
],
"exports": {
".": {
"import": "./dist/mjs/index.js",
"require": "./dist/cjs/index.js",
"types": "./dist/index.d.ts"
},
"./package.json": "./package.json"
},
"module": "dist/mjs/index.js",
"main": "dist/cjs/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "cpy 'src/[c,m]js/*' 'dist' && tsc --project tsconfig.mjs.json && tsc --project tsconfig.cjs.json",
"test": "jest",
"lint": "eslint .",
"format": "eslint --fix .",
"prepack": "yarn run build",
"prepublish": "yarn run lint && yarn run test"
},
"devDependencies": {
"@types/jest": "^29.5.2",
"@types/node": "^20.2.5",
"@typescript-eslint/eslint-plugin": "^5.59.8",
"@typescript-eslint/parser": "^5.59.8",
"cpy-cli": "^4.2.0",
"eslint": "^8.42.0",
"eslint-config-standard-with-typescript": "^35.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^16.0.0",
"eslint-plugin-promise": "^6.1.1",
"jest": "^29.5.0",
"jest-junit": "^16.0.0",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"typescript": "5.0.4"
}
}