Files
AR-Menu/AR Menu/Needle/MenuScene/node_modules/find-replace/package.json
2025-11-30 08:35:03 +02:00

37 lines
872 B
JSON

{
"name": "find-replace",
"author": "Lloyd Brookes <75pound@gmail.com>",
"version": "3.0.0",
"description": "Find and either replace or remove items in an array",
"repository": "https://github.com/75lb/find-replace.git",
"license": "MIT",
"main": "dist/index.js",
"keywords": [
"find",
"replace",
"array",
"remove",
"splice"
],
"engines": {
"node": ">=4.0.0"
},
"scripts": {
"test": "test-runner test.js",
"docs": "jsdoc2md -c jsdoc.conf -t README.hbs index.mjs > README.md; echo",
"dist": "rollup index.mjs -f umd -n findReplace -o dist/index.js && rollup index.mjs -f esm -o dist/index.mjs"
},
"devDependencies": {
"jsdoc-to-markdown": "^4.0.1",
"rollup": "^1.7.0",
"test-runner": "^0.5.1"
},
"dependencies": {
"array-back": "^3.0.1"
},
"files": [
"index.mjs",
"dist"
]
}