mirror of
https://github.com/krisk/Fuse.git
synced 2026-01-18 16:16:25 +00:00
67 lines
1.7 KiB
JSON
67 lines
1.7 KiB
JSON
{
|
|
"name": "fuse.js",
|
|
"author": {
|
|
"name": "Kiro Risk",
|
|
"email": "kirollos@gmail.com",
|
|
"url": "http://kiro.me"
|
|
},
|
|
"main": "./dist/fuse.common.js",
|
|
"module": "./dist/fuse.esm.js",
|
|
"unpkg": "./dist/fuse.js",
|
|
"jsdelivr": "./dist/fuse.js",
|
|
"typings": "./dist/fuse.d.ts",
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"version": "5.0.9-beta",
|
|
"description": "Lightweight fuzzy-search",
|
|
"license": "Apache-2.0",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/krisk/Fuse.git"
|
|
},
|
|
"homepage": "http://fusejs.io",
|
|
"keywords": [
|
|
"fuzzy",
|
|
"search",
|
|
"bitap"
|
|
],
|
|
"scripts": {
|
|
"dev": "rollup -w -c scripts/configs.js --environment TARGET:umd-dev",
|
|
"dev:cjs": "rollup -w -c scripts/configs.js --environment TARGET:commonjs",
|
|
"dev:esm": "rollup -w -c scripts/configs.js --environment TARGET:esm",
|
|
"build": "node scripts/build.main.js",
|
|
"test": "jest",
|
|
"lint": "eslint src scripts test",
|
|
"release": "bash scripts/release.sh"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/cli": "7.2.3",
|
|
"@babel/core": "^7.3.4",
|
|
"@babel/plugin-proposal-object-rest-spread": "7.9.0",
|
|
"@babel/preset-env": "7.3.4",
|
|
"@babel/preset-typescript": "7.9.0",
|
|
"@rollup/plugin-buble": "0.21.1",
|
|
"@rollup/plugin-node-resolve": "7.1.1",
|
|
"@rollup/plugin-replace": "2.3.1",
|
|
"@types/jest": "25.1.4",
|
|
"babel-eslint": "10.1.0",
|
|
"babel-loader": "^8.0.5",
|
|
"eslint": "6.8.0",
|
|
"faker": "4.1.0",
|
|
"jest": "25.1.0",
|
|
"rimraf": "3.0.2",
|
|
"rollup": "2.1.0",
|
|
"rollup-plugin-babel": "4.4.0",
|
|
"rollup-plugin-copy": "3.3.0",
|
|
"terser-webpack-plugin": "2.3.5",
|
|
"typescript": "3.8.3",
|
|
"webpack": "4.42.0",
|
|
"webpack-cli": "3.3.11"
|
|
},
|
|
"engines": {
|
|
"node": ">=10"
|
|
},
|
|
"dependencies": {}
|
|
}
|