-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.22 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
{
"name": "@digitallinguistics/toolbox2json",
"version": "2.0.0",
"description": "A Node (JavaScript) library to convert SIL Toolbox dictionary files to JSON",
"keywords": [
"dictionaries",
"dictionary",
"JSON",
"language",
"languages",
"lexicography",
"linguistics",
"SFM",
"SIL",
"Toolbox"
],
"homepage": "https://github.com/digitallinguistics/toolbox2json#readme",
"bugs": "https://github.com/digitallinguistics/toolbox2json/issues",
"license": "MIT",
"author": {
"name": "Daniel W. Hieber",
"url": "https://danielhieber.com"
},
"main": "src/toolbox2json.js",
"bin": {
"toolbox2json": "./bin/toolbox2json.js"
},
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/digitallinguistics/toolbox2json.git"
},
"engines": {
"node": ">=14.0"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"commander": "^7.1.0",
"progress": "^2.0.3"
},
"scripts": {
"test": "mocha src/toolbox2json.test.js"
},
"devDependencies": {
"chai": "^4.3.4",
"eslint": "^7.22.0",
"eslint-plugin-chai-friendly": "^0.6.0",
"mocha": "^8.3.2",
"sinon": "^10.0.1",
"sinon-chai": "^3.6.0"
}
}