This commit is contained in:
Jonasz Bigda
2023-03-25 21:51:42 +01:00
parent 0db1d5117e
commit b332e9ceb0
1044 changed files with 37502 additions and 63938 deletions

77
node_modules/sift/package.json generated vendored
View File

@@ -1,38 +1,61 @@
{
"name": "sift",
"description": "mongodb query style array filtering",
"version": "7.0.1",
"description": "MongoDB query filtering in JavaScript",
"version": "13.5.2",
"repository": "crcn/sift.js",
"sideEffects": false,
"author": {
"name": "Craig Condon",
"email": "craig.j.condon@gmail.com",
"url": "http://crcn.io"
"email": "craig.j.condon@gmail.com"
},
"license": "MIT",
"engines": {},
"dependencies": {},
"typings": "./index.d.ts",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-preset-es2015": "^6.24.1",
"babel-preset-es2015-loose": "^8.0.0",
"bson": "^3.0.2",
"immutable": "^3.7.6",
"mocha": "^5.2.0",
"webpack": "^4.20.2",
"webpack-cli": "^3.1.2",
"yargs": "^3.15.0"
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"main": "./lib/index.js",
"module": "./src/index.js",
"es2015": "./src/index.js",
"devDependencies": {
"@rollup/plugin-replace": "^2.3.2",
"@rollup/plugin-typescript": "^4.1.1",
"@types/node": "^13.7.0",
"bson": "^4.0.3",
"eval": "^0.1.4",
"husky": "^1.2.1",
"immutable": "^3.7.6",
"mocha": "8.3.2",
"mongodb": "^3.6.6",
"prettier": "1.15.3",
"pretty-quick": "^1.11.1",
"rimraf": "^3.0.2",
"rollup": "^2.7.2",
"rollup-plugin-terser": "^7.0.2",
"tslib": "^2.0.0",
"typescript": "^3.8.3"
},
"main": "./index.js",
"module": "./es5m/index.js",
"es2015": "./es/index.js",
"scripts": {
"build": "mkdir -p lib; babel src/index.js > lib/index.js; webpack",
"test": "mocha ./test -R spec --compilers js:babel-core/register"
}
,"_resolved": "https://registry.npmjs.org/sift/-/sift-7.0.1.tgz"
,"_integrity": "sha512-oqD7PMJ+uO6jV9EQCl0LrRw1OwsiPsiFQR5AR30heR+4Dl7jBBbDLnNvWiak20tzZlSE1H7RB30SX/1j/YYT7g=="
,"_from": "sift@7.0.1"
}
"clean": "rimraf lib es5m es",
"prebuild": "npm run clean && npm run build:types",
"build": "rollup -c",
"build:types": "tsc -p tsconfig.json --emitDeclarationOnly --outDir lib",
"test": "npm run test:spec && npm run test:types",
"test:spec": "mocha ./test -R spec",
"test:types": "cd test && tsc types.ts --noEmit",
"prepublishOnly": "npm run build && npm run test"
},
"files": [
"es",
"es5m",
"lib",
"*.d.ts",
"*.js.map",
"index.js",
"sift.csp.min.js",
"sift.min.js",
"MIT-LICENSE.txt"
]
}