-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
43 lines (43 loc) · 962 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
42
43
{
"name": "jtf-lib",
"version": "0.1.4",
"description": "JSON Transliteration Format (JTF) API & ATF parser.",
"main": "./src/index.js",
"scripts": {
"start": "node ./src/start.js",
"dev": "nodemon ./src/start.js",
"test": "test"
},
"bin": {
"jtf": "./src/CLI/cli.js"
},
"keywords": [
"cuneiform",
"transliteration",
"parser",
"jtf",
"atf",
"nearly.js"
],
"author": "Ilya Khait",
"license": "MIT",
"dependencies": {
"body-parser": "^1.19.0",
"cookie-parser": "^1.4.4",
"cors": "^2.8.5",
"express": "^4.17.1",
"html-entities": "^2.1.0",
"http-terminator": "^3.0.0",
"jsonpath-plus": "^6.0.1",
"jtf-signlist": "github:cdli-gh/jtf-signlist",
"moo": "^0.5.0",
"nearley": "^2.19.0",
"node-fetch": "^2.6.7",
"node-html-parser": "^1.1.16",
"promise-timeout": "^1.3.0",
"yargs": "^16.2.0"
},
"devDependencies": {
"nodemon": "^2.0.15"
}
}