63 lines
1.5 KiB
JSON
63 lines
1.5 KiB
JSON
{
|
|
"name": "copy-anything",
|
|
"sideEffects": false,
|
|
"version": "2.0.1",
|
|
"description": "An optimised way to copy'ing an object. A small and simple integration",
|
|
"main": "dist/index.cjs.js",
|
|
"module": "dist/index.esm.js",
|
|
"typings": "types/index.d.ts",
|
|
"scripts": {
|
|
"test": "ava",
|
|
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
|
|
"rollup": "rollup -c build/rollup.js",
|
|
"build": "npm run lint && npm run test && npm run rollup"
|
|
},
|
|
"dependencies": {
|
|
"is-what": "^3.7.1"
|
|
},
|
|
"devDependencies": {
|
|
"@typescript-eslint/eslint-plugin": "^2.23.0",
|
|
"@typescript-eslint/parser": "^2.23.0",
|
|
"ava": "^3.5.0",
|
|
"eslint": "^6.8.0",
|
|
"eslint-config-prettier": "^6.10.0",
|
|
"eslint-plugin-tree-shaking": "^1.8.0",
|
|
"rollup": "^1.32.1",
|
|
"rollup-plugin-typescript2": "^0.25.3",
|
|
"ts-node": "^8.6.2",
|
|
"typescript": "^3.8.3"
|
|
},
|
|
"keywords": [
|
|
"copy",
|
|
"clone",
|
|
"json-stringify",
|
|
"stringify-parse",
|
|
"object",
|
|
"copy-objects",
|
|
"clone-objects",
|
|
"json-stringify-json-parse",
|
|
"deep-clone",
|
|
"deep-copy",
|
|
"typescript",
|
|
"ts"
|
|
],
|
|
"author": "Luca Ban - Mesqueeb",
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/mesqueeb/copy-anything/issues"
|
|
},
|
|
"homepage": "https://github.com/mesqueeb/copy-anything#readme",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/mesqueeb/copy-anything.git"
|
|
},
|
|
"ava": {
|
|
"extensions": [
|
|
"ts"
|
|
],
|
|
"require": [
|
|
"ts-node/register"
|
|
]
|
|
}
|
|
}
|