mirror of
https://github.com/Expand-sys/ccashfrontend
synced 2025-12-19 08:02:15 +11:00
34 lines
902 B
JSON
34 lines
902 B
JSON
{
|
|
"name": "sift",
|
|
"description": "mongodb query style array filtering",
|
|
"version": "7.0.1",
|
|
"repository": "crcn/sift.js",
|
|
"author": {
|
|
"name": "Craig Condon",
|
|
"email": "craig.j.condon@gmail.com",
|
|
"url": "http://crcn.io"
|
|
},
|
|
"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"
|
|
},
|
|
"main": "./lib/index.js",
|
|
"module": "./src/index.js",
|
|
"es2015": "./src/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"
|
|
}
|
|
}
|