-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
40 lines (40 loc) · 1.11 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
{
"name": "edit-distance",
"version": "1.0.5",
"description": "String and tree edit distance",
"main": "./dist/index.js",
"scripts": {
"test": "mocha --require coffeescript/register test/*.test.coffee",
"test:trace": "mocha --require coffeescript/register --trace-deopt --trace-opt test/*.test.coffee > trace.log",
"build": "coffee --no-header --bare --output dist --compile src",
"bundle": "browserify dist --standalone edit-distance --outfile edit-distance.js"
},
"keywords": [
"string",
"levenshtein",
"tree",
"zhang-shasha",
"edit",
"distance",
"similarity",
"algorithm",
"metric"
],
"devDependencies": {
"browserify": "^17.0.0",
"chai": "^4.2.0",
"coffeescript": "^2.6.1",
"marked": "^4.0.12",
"mocha": "^9.2.0"
},
"author": "Christoph Schulz <[email protected]>",
"license": "Apache-2.0",
"homepage": "https://github.com/schulzch/edit-distance-js",
"bugs": {
"url": "https://github.com/schulzch/edit-distance-js/issues"
},
"repository": {
"type": "git",
"url": "git://github.com/schulzch/edit-distance-js.git"
}
}