-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
82 lines (82 loc) · 2.57 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "@altlab/dictionary-database",
"version": "0.1.0",
"description": "Managing ALTLab's Plains Cree dictionary database",
"author": "University of Alberta Language Technology Lab",
"homepage": "https://github.com/UAlbertaALTLab/dictionary-database",
"bugs": "https://github.com/UAlbertaALTLab/dictionary-database/issues",
"repository": {
"type": "git",
"url": "https://github.com/UAlbertaALTLab/dictionary-database.git"
},
"license": "GPL-3.0",
"keywords": [
"Cree",
"lexicography",
"dictionary",
"Digital Linguistics"
],
"private": true,
"engines": {
"node": ">=16.0"
},
"type": "module",
"scripts": {
"aggregate": "node bin/aggregate.js data/database.ndjson data/database.ndjson",
"prebuild": "npm run build:relax-fst && npm run build:strict-fst",
"build": "node bin/buildDatabase.js",
"build:relax-fst": "python lib/utilities/mini-lfs-client.py UAlbertaALTLab cree-intelligent-dictionary src/crkeng/resources/fst/crk-relaxed-analyzer-for-dictionary.hfstol",
"build:strict-fst": "python lib/utilities/mini-lfs-client.py UAlbertaALTLab cree-intelligent-dictionary src/crkeng/resources/fst/crk-strict-analyzer-for-dictionary.hfstol",
"clear": "node bin/clearDatabase.js",
"test": "mocha --ignore=Toolbox.test.js lib/**/*.test.js test/*.test.js",
"test:build": "mocha lib/test/testBuild.js"
},
"bin": {
"aggregate": "./bin/aggregate.js",
"convert-cw": "./bin/convert-CW.js",
"convert-md": "./bin/convert-MD.js",
"import-altlab": "./bin/import-altlab.js",
"import-cw": "./bin/import-CW.js",
"import-cw-sources": "./bin/import-CW-sources.js",
"import-md": "./bin/import-MD.js"
},
"devDependencies": {
"@digitallinguistics/toolbox2json": "^2.0.0",
"chai": "^4.3.4",
"cli-progress": "^3.9.0",
"commander": "^7.2.0",
"csv-parse": "^4.15.3",
"csv-stringify": "^5.6.2",
"eslint": "^8.1.0",
"eslint-plugin-chai-friendly": "^0.6.0",
"fs-extra": "^10.0.0",
"hfstol": "^0.0.3",
"js-yaml": "^4.1.0",
"mocha": "^10.7.3",
"ndjson": "^2.0.0",
"ora": "^5.4.1",
"sort-keys": "^5.0.0"
},
"contributors": [
{
"name": "Eddie Antonio Santos",
"url": "https://github.com/eddieantonio"
},
{
"name": "Antti Arppe",
"url": "https://github.com/aarppe"
},
{
"name": "Daniel W. Hieber",
"url": "https://danielhieber.com"
},
{
"name": "Aida Radu",
"url": "https://github.com/aradu12"
},
{
"name": "Andrew Neitsch",
"url": "https://github.com/andrewdotn"
}
]
}