-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
82 lines (82 loc) · 2.47 KB
/
package.json
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": "circ-clone",
"version": "2.7.11",
"description": "Simple lib to safely clone circular objects.",
"main": "./app/dist/esm/circClone.mjs",
"types": "./app/dist/esm/circClone.d.ts",
"exports": {
"node": {
"import": "./app/dist/esm/circClone.mjs",
"require": "./app/dist/cjs/circClone.js"
},
"default": "./app/dist/esm/circClone.mjs"
},
"scripts": {
"build": "del-cli app/dist && concurrently \"npm run buildESM\" \"npm run buildCJS\" --raw",
"buildESM": "tsc -p ./tsconfig.prod.esm.json && mjsify app/dist esm cjs",
"buildCJS": "tsc -p ./tsconfig.prod.cjs.json && npm run buildCJS2",
"buildCJS2": "rollup --config rollup.node.prod.config.mjs",
"dev": "npm run devWeb",
"devWeb": "rollup --config rollup.web.dev.config.mjs -w",
"devNode": "rollup --config rollup.node.dev.config.mjs -w",
"deploy": "npm run build && npm publish",
"repl": "node ./repl/dist/circClone-repl.js",
"start": "npm run repl",
"buildTest": "rollup --config rollup.node.test.config.mjs",
"test": "npm run buildTest && jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/maximilianMairinger/circClone.git"
},
"keywords": [
"circ",
"circular",
"cyclic",
"recursive",
"self-referencing",
"object",
"clone",
"copy",
"simple"
],
"author": "maximilianMairinger",
"license": "ISC",
"bugs": {
"url": "https://github.com/maximilianMairinger/circClone/issues"
},
"homepage": "https://github.com/maximilianMairinger/circClone#readme",
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-typescript": "^11.1.5",
"@types/jest": "^26.0.24",
"@types/node": "^13.13.52",
"builtins": "^5.0.1",
"circ-json": "^1.0.4",
"colorful-cli-logger": "^1.0.2",
"commander": "^6.2.1",
"concurrently": "^8.2.2",
"deepmerge": "^4.3.1",
"del-cli": "^5.1.0",
"fast-linked-list": "^3.2.3",
"highlvl-benchmark": "^1.0.2",
"jest": "^26.6.3",
"jest-expect-ordered": "^1.0.0",
"mjsify": "^2.0.8",
"number-to-words": "^1.2.4",
"renamer": "^4.0.0",
"req-package-json": "^2.1.4",
"rfdc": "^1.3.0",
"rollup": "^3.29.4",
"tslib": "2.0.0",
"typescript": "^5.3.3",
"webpack-merge": "^5.10.0"
},
"dependencies": {
"iterare": "^1.2.1",
"object.hasown": "^1.1.3",
"sanitize-against": "^1.5.4"
}
}