[6a3a178] | 1 | {
|
---|
| 2 | "name": "copy-anything",
|
---|
| 3 | "sideEffects": false,
|
---|
| 4 | "version": "2.0.3",
|
---|
| 5 | "description": "An optimised way to copy'ing an object. A small and simple integration",
|
---|
| 6 | "main": "dist/index.cjs.js",
|
---|
| 7 | "module": "dist/index.esm.js",
|
---|
| 8 | "typings": "types/index.d.ts",
|
---|
| 9 | "scripts": {
|
---|
| 10 | "test": "ava",
|
---|
| 11 | "lint": "eslint . --ext .js,.jsx,.ts,.tsx",
|
---|
| 12 | "rollup": "rollup -c build/rollup.js",
|
---|
| 13 | "build": "npm run lint && npm run test && npm run rollup"
|
---|
| 14 | },
|
---|
| 15 | "dependencies": {
|
---|
| 16 | "is-what": "^3.12.0"
|
---|
| 17 | },
|
---|
| 18 | "devDependencies": {
|
---|
| 19 | "@typescript-eslint/eslint-plugin": "^4.14.2",
|
---|
| 20 | "@typescript-eslint/parser": "^4.14.2",
|
---|
| 21 | "ava": "^3.15.0",
|
---|
| 22 | "eslint": "^7.19.0",
|
---|
| 23 | "eslint-config-prettier": "^7.2.0",
|
---|
| 24 | "eslint-plugin-tree-shaking": "^1.8.0",
|
---|
| 25 | "rollup": "^2.38.4",
|
---|
| 26 | "rollup-plugin-typescript2": "^0.29.0",
|
---|
| 27 | "ts-node": "^9.1.1",
|
---|
| 28 | "tsconfig-paths": "^3.9.0",
|
---|
| 29 | "typescript": "^4.1.3"
|
---|
| 30 | },
|
---|
| 31 | "keywords": [
|
---|
| 32 | "copy",
|
---|
| 33 | "clone",
|
---|
| 34 | "json-stringify",
|
---|
| 35 | "stringify-parse",
|
---|
| 36 | "object",
|
---|
| 37 | "copy-objects",
|
---|
| 38 | "clone-objects",
|
---|
| 39 | "json-stringify-json-parse",
|
---|
| 40 | "deep-clone",
|
---|
| 41 | "deep-copy",
|
---|
| 42 | "typescript",
|
---|
| 43 | "ts"
|
---|
| 44 | ],
|
---|
| 45 | "author": "Luca Ban - Mesqueeb",
|
---|
| 46 | "license": "MIT",
|
---|
| 47 | "bugs": {
|
---|
| 48 | "url": "https://github.com/mesqueeb/copy-anything/issues"
|
---|
| 49 | },
|
---|
| 50 | "homepage": "https://github.com/mesqueeb/copy-anything#readme",
|
---|
| 51 | "repository": {
|
---|
| 52 | "type": "git",
|
---|
| 53 | "url": "git+https://github.com/mesqueeb/copy-anything.git"
|
---|
| 54 | },
|
---|
| 55 | "ava": {
|
---|
| 56 | "extensions": [
|
---|
| 57 | "ts"
|
---|
| 58 | ],
|
---|
| 59 | "require": [
|
---|
| 60 | "tsconfig-paths/register",
|
---|
| 61 | "ts-node/register"
|
---|
| 62 | ]
|
---|
| 63 | }
|
---|
| 64 | }
|
---|