-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.15 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
{
"name": "@digitallinguistics/transliterate",
"version": "0.4.1",
"description": "A small JavaScript library for transliterating and/or sanitizing strings",
"keywords": [
"transliteration",
"Digital Linguistics",
"DLx",
"linguistics",
"digital humanities"
],
"homepage": "https://github.com/digitallinguistics/transliterate",
"bugs": "https://github.com/digitallinguistics/transliterate/issues",
"license": "MIT",
"author": {
"name": "Daniel W. Hieber",
"url": "https://danielhieber.com",
"email": "[email protected]"
},
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/digitallinguistics/transliterate.git"
},
"main": "transliterate.js",
"scripts": {
"docs": "jsdoc -c jsdoc.json",
"test": "node --test"
},
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=20.x"
},
"devDependencies": {
"@digitallinguistics/eslint-config": "^0.5.2",
"@eslint/js": "^9.3.0",
"@stylistic/eslint-plugin-js": "^2.1.0",
"chai": "^5.1.1",
"eslint": "^9.3.0",
"eslint-plugin-chai-friendly": "^0.8.0",
"jsdoc": "^4.0.3"
}
}