-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 983 Bytes
/
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
{
"name": "full-copy",
"version": "1.0.3",
"description": "This package allows you to create a copy of a given value. It is especially focused on making deep copies to objects.",
"main": "node/index.js",
"browser": "browser/index.js",
"homepage": "https://github.com/ChristBM/full-copy",
"repository": {
"type": "git",
"url": "https://github.com/ChristBM/full-copy"
},
"scripts": {
"build-browser": "tsc src/index.ts --outDir browser --module ES6",
"build-node": "tsc src/index.ts --outDir node",
"build": "npm run build-browser & npm run build-node"
},
"keywords": [
"deep",
"copy",
"object",
"javascript",
"types",
"copy nested objects",
"full"
],
"author": "ChristBM <christian.boffill@gmail.com> (https://github.com/ChristBM)",
"contributors": ["JoseGaldamez (https://github.com/JoseGaldamez)"],
"license": "MIT",
"devDependencies": {
"@types/node": "^17.0.18",
"typescript": "^4.5.5"
}
}