FLUJOS/VISUALIZACION/node_modules/data-joint/package.json
2025-11-07 00:06:12 +01:00

63 lines
1.5 KiB
JSON
Executable file

{
"name": "data-joint",
"version": "1.3.1",
"description": "Perform data joins with any type of JS objects",
"type": "module",
"unpkg": "dist/data-joint.min.js",
"main": "dist/data-joint.mjs",
"module": "dist/data-joint.mjs",
"types": "dist/data-joint.d.ts",
"exports": {
"umd": "./dist/data-joint.min.js",
"default": "./dist/data-joint.mjs"
},
"sideEffects": false,
"homepage": "https://github.com/vasturiano/data-joint",
"repository": {
"type": "git",
"url": "git+https://github.com/vasturiano/data-joint.git"
},
"bugs": {
"url": "https://github.com/vasturiano/data-joint/issues"
},
"license": "MIT",
"keywords": [
"data",
"array",
"join",
"digest",
"performance"
],
"author": {
"name": "Vasco Asturiano",
"url": "https://github.com/vasturiano"
},
"files": [
"src/**/*",
"dist/**/*",
"example/**/*"
],
"scripts": {
"build": "rimraf dist && rollup -c",
"dev": "rollup -w -c",
"prepare": "npm run build"
},
"dependencies": {
"index-array-by": "^1.4.0"
},
"devDependencies": {
"@babel/core": "^7.20.12",
"@babel/preset-env": "^7.20.2",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-commonjs": "^24.0.1",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-terser": "^0.4.0",
"rimraf": "^4.1.2",
"rollup": "^3.14.0",
"rollup-plugin-dts": "^5.1.1",
"typescript": "^4.9.5"
},
"engines": {
"node": ">=12"
}
}