-
Notifications
You must be signed in to change notification settings - Fork 31
/
package.json
59 lines (59 loc) · 1.83 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"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": "[email protected]",
"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/"
}
}