PhoneticMatching/package.json

60 строки
1.8 KiB
JSON

{
"name": "phoneticmatching",
"version": "0.3.8",
"description": "A text utility to do string comparisons at a phonetic level.",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"scripts": {
"install": "node-pre-gyp install --fallback-to-build",
"prepare": "npm run tsc",
"package": "node-pre-gyp package",
"test": "jest --config jestConfig.json test[.]",
"test:debug": "npm test -- --verbose -i",
"test:testsets": "jest --config jestConfig.json testset.spec",
"build-docs": "typedoc --options typedoc.json --tsconfig ts/tsconfig.json ts/",
"tsc": "tsc --project ts/",
"watch": "npm run tsc -- --watch",
"build": "node-pre-gyp build --build-from-source",
"build:debug": "npm run build -- --debug",
"rebuild": "node-pre-gyp rebuild --build-from-source",
"rebuild:debug": "npm run rebuild -- --debug",
"release": "npm run rebuild && npm run tsc && npm run build-docs"
},
"homepage": "https://microsoft.github.io/PhoneticMatching/",
"repository": {
"type": "git",
"url": "https://github.com/Microsoft/PhoneticMatching"
},
"author": "madixon@microsoft.com",
"license": "MIT",
"engines": {
"node": ">=8.11.2"
},
"devDependencies": {
"@types/jest": "^25.2.3",
"@types/node": "^11.15.54",
"@types/xregexp": "^3.0.30",
"jest": "^25.5.4",
"ts-jest": "^25.5.1",
"typedoc": "^0.20.37",
"typescript": "^3.9.10"
},
"dependencies": {
"@mapbox/node-pre-gyp": "^1.0.10",
"xregexp": "^4.4.1"
},
"files": [
"binding.gyp",
"lib/",
"src/",
"!src/cs/"
],
"binary": {
"module_name": "maluubaspeech",
"module_path": "./bindings/lib/",
"package_name": "{module_name}-{node_abi}-{platform}-{arch}.tar.gz",
"remote_path": "{version}",
"host": "https://github.com/Microsoft/PhoneticMatching/releases/download/"
}
}