-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
48 lines (48 loc) · 1.21 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
{
"name": "@digitallinguistics/concordance",
"version": "0.4.0",
"description": "A Node.js library for concordancing a corpus formatted according to the Data Format for Digital Linguistis (DaFoDiL)",
"keywords": [
"corpus linguistics",
"linguistics",
"corpus",
"corpora",
"digital linguistics",
"DLx"
],
"homepage": "https://developer.digitallinguistics.io/concordance",
"bugs": "https://github.com/digitallinguistics/concordance/issues",
"license": "MIT",
"author": {
"name": "Daniel W. Hieber",
"url": "https://danielhieber.com"
},
"main": "src/index.js",
"repository": {
"type": "git",
"url": "https://github.com/digitallinguistics/concordance.git"
},
"bin": {
"dlx-conc": "./concordance.js"
},
"scripts": {
"test": "node concordance.js -d test -o test/concordance.tsv -c 5 -k --wordlist=test/wordlist.json"
},
"engines": {
"node": ">=12.0"
},
"publishConfig": {
"access": "public"
},
"devDependencies": {
"eslint": "^6.4.0"
},
"dependencies": {
"JSONStream": "^1.3.5",
"commander": "^3.0.2",
"csv-stringify": "^5.3.3",
"fs-extra": "^8.1.0",
"progress": "^2.0.3",
"recursive-readdir": "^2.2.2"
}
}