mirror of
https://github.com/Combodo/iTop.git
synced 2026-02-25 21:34:12 +01:00
73 lines
1.7 KiB
JSON
73 lines
1.7 KiB
JSON
{
|
|
"name": "@orchidjs/unicode-variants",
|
|
"version": "1.0.4",
|
|
"description": "Unicode variant string matching",
|
|
"main": "dist/umd/index.js",
|
|
"browser": "dist/umd/index.js",
|
|
"module": "dist/esm/index.js",
|
|
"types": "dist/types/index.d.mts",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/orchidjs/unicode-variants.git"
|
|
},
|
|
"scripts": {
|
|
"pretest": "npm run build",
|
|
"test": "jest",
|
|
"test:coveralls": "npm run build && jest --coverage && cat ./coverage/lcov.info | coveralls",
|
|
"test:typescript": "tsc -p .config --noemit",
|
|
"bench": "npx 0x -- node --zero-fill-buffers bench.mjs",
|
|
"build": "npx rollup -c .config/rollup.config.js",
|
|
"build:types": "tsc -p .config --emitDeclarationOnly"
|
|
},
|
|
"keywords": [
|
|
"unicode",
|
|
"diacritic",
|
|
"diacritics",
|
|
"matching",
|
|
"search",
|
|
"find",
|
|
"string",
|
|
"text"
|
|
],
|
|
"author": "",
|
|
"license": "Apache-2.0",
|
|
"files": [
|
|
"/dist",
|
|
"/lib"
|
|
],
|
|
"dependencies": {},
|
|
"browserslist": [
|
|
">= 0.5%",
|
|
"not dead",
|
|
"Chrome >= 60",
|
|
"Firefox >= 60",
|
|
"Firefox ESR",
|
|
"Edge >= 17",
|
|
"iOS >= 12",
|
|
"Safari >= 12",
|
|
"not Explorer <= 11"
|
|
],
|
|
"devDependencies": {
|
|
"0x": "^5.4.1",
|
|
"@babel/core": "^7.18.10",
|
|
"@babel/preset-env": "^7.18.10",
|
|
"@babel/preset-typescript": "^7.18.6",
|
|
"@rollup/plugin-babel": "^5.3.1",
|
|
"coveralls": "^3.1.1",
|
|
"jest": "^28.1.3",
|
|
"rollup": "^2.77.2",
|
|
"rollup-plugin-terser": "^7.0.2",
|
|
"typescript": "^4.7.4"
|
|
},
|
|
"jest": {
|
|
"verbose": true,
|
|
"testMatch": [
|
|
"**/test/**/*.js"
|
|
]
|
|
},
|
|
"publishConfig": {
|
|
"access": "public",
|
|
"registry": "https://registry.npmjs.org/"
|
|
}
|
|
}
|