obop
Version:
MongoDB-style object operators makes array manipulation easy: where/order/update/view
70 lines (69 loc) • 1.54 kB
JSON
{
"name": "obop",
"description": "MongoDB-style object operators makes array manipulation easy: where/order/update/view",
"version": "1.0.0",
"author": "https://github.com/kawanet",
"bugs": {
"url": "https://github.com/kawanet/obop/issues"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^28.0.1",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-multi-entry": "^6.0.1",
"@rollup/plugin-node-resolve": "^15.3.0",
"assert": "^1.5.1",
"jsdoc": "^4.0.4",
"jshint": "^2.13.6",
"mocha": "^11.0.1",
"rollup": "^4.28.1",
"terser": "^5.37.0"
},
"exports": {
"import": "./build/obop.mjs",
"require": "./index.js"
},
"files": [
"LICENSE",
"README.md",
"browser/import.js",
"build/obop.min.js",
"build/obop.mjs",
"index.js",
"lib/"
],
"homepage": "https://github.com/kawanet/obop#readme",
"jshintConfig": {
"bitwise": true,
"browser": true,
"eqeqeq": true,
"mocha": true,
"noarg": true,
"nocomma": true,
"node": true,
"nonbsp": true,
"nonew": true,
"regexp": true,
"undef": true,
"unused": true
},
"keywords": [
"array",
"filter",
"map",
"mongodb",
"sort"
],
"license": "MIT",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/kawanet/obop.git"
},
"scripts": {
"build": "make clean all",
"fixpack": "fixpack",
"prepack": "npm run build && npm test",
"test": "make test"
},
"type": "commonjs"
}