wrangler-action/node_modules/mixme/package.json

100 lines
2.4 KiB
JSON
Raw Normal View History

2023-08-07 22:11:15 +02:00
{
"name": "mixme",
"description": "A library for recursively merging JavaScript objects",
"version": "0.5.9",
"author": "David Worms <david@adaltas.com> (https://www.adaltas.com)",
"contributors": [
"Paul Farault <paul.farault@gmail.com>"
],
"devDependencies": {
"@babel/core": "^7.15.5",
"@babel/preset-env": "^7.15.6",
"@commitlint/cli": "^13.1.0",
"@commitlint/config-conventional": "^13.1.0",
"@types/mocha": "^10.0.1",
"@types/node": "^18.15.3",
"coffeescript": "^2.6.0",
"husky": "^7.0.2",
"mocha": "^9.1.1",
"pinst": "^2.1.6",
"rollup": "^2.56.3",
"rollup-plugin-babel": "^4.4.0",
"should": "^13.2.3",
"standard-version": "^9.3.1",
"ts-node": "^10.9.1",
"typescript": "^4.9.5"
},
"engines": {
"node": ">= 8.0.0"
},
"homepage": "https://github.com/adaltas/node-mixme",
"bugs": {
"url": "https://github.com/adaltas/node-mixme/issues"
},
"exports": {
".": {
"import": {
"types": "./lib/index.d.ts",
"default": "./lib/index.js"
},
"require": {
"types": "./dist/cjs/index.d.cts",
"default": "./dist/cjs/index.cjs"
}
}
},
"keywords": [
"clone",
"copy",
"deep",
"extend",
"merge",
"objects",
"recursive"
],
"files": [
"dist",
"lib"
],
"license": "MIT",
"main": "./dist/cjs/index.cjs",
"mocha": {
"inline-diffs": true,
"loader": "ts-node/esm",
"recursive": true,
"reporter": "spec",
"require": [
"should"
],
"throw-deprecation": true,
"timeout": 40000
},
"repository": {
"type": "git",
"url": "https://github.com/adaltas/node-mixme.git"
},
"scripts": {
"_postinstall": "husky install",
"prepublishOnly": "pinst --disable",
"postpublish": "pinst --enable",
"build": "npm run build:rollup && npm run build:ts",
"build:rollup": "rollup -c",
"build:ts": "cp lib/index.d.ts dist/cjs/index.d.cts && cp lib/*.ts dist/esm",
"test": "mocha 'test/**/*.{js,ts}'",
"release": "standard-version",
"release:minor": "standard-version --release-as minor",
"release:patch": "standard-version --release-as patch",
"release:major": "standard-version --release-as major"
},
"type": "module",
"types": "lib/index.d.ts",
"typesVersions": {
"*": {
".": [
"dist/esm/index.d.ts"
]
}
},
"dependencies": {}
}