-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 954 Bytes
/
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
{
"name": "@digitallinguistics/word-aligner",
"version": "0.3.2",
"description": "A JavaScript (Node/browser) utility for vertically aligning words",
"keywords": [
"Digital Linguistics",
"DLx",
"linguistics",
"interlinear gloss",
"corpus linguistics"
],
"homepage": "https://developer.digitallinguistics.io/word-aligner/",
"bugs": {
"url": "https://github.com/digitallinguistics/word-aligner/issues"
},
"license": "MIT",
"author": {
"name": "Daniel W. Hieber",
"url": "https://danielhieber.com"
},
"repository": {
"type": "git",
"url": "https://github.com/digitallinguistics/word-aligner.git"
},
"type": "module",
"main": "alignWords.js",
"scripts": {
"test": "mocha alignWords.test.js"
},
"publishConfig": {
"access": "public"
},
"engines": {
"node": "14.x"
},
"devDependencies": {
"chai": "^4.3.4",
"eslint": "^7.23.0",
"mocha": "^8.3.2"
}
}