-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.4 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": "kdl-dts-server",
"version": "0.5.1",
"description": "Distributed Text Service (DTS) server from TEI files.",
"/main": "server.js",
"scripts": {
"test": "mocha -b ./tests/*.test.js",
"start": "nodemon ./bin/server.js",
"xslt": "npx xslt3 -xsl:responses/tei-to-html.xsl -export:responses/tei-to-html.sef.json -t -ns:##html5 -nogo",
"start:at": "nodemon ./bin/server.js tests/settings-at.json",
"start:at-lcl": "nodemon ./bin/server.js tests/settings-at-lcl.json"
},
"bin": {
"kdl-dts-server": "./bin/server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kingsdigitallab/kdl-dts-server.git"
},
"author": {
"name": "Geoffroy Noel",
"url": "https://github.com/geoffroy-noel-ddh"
},
"license": "ISC",
"bugs": {
"url": "https://github.com/kingsdigitallab/kdl-dts-server/issues"
},
"homepage": "https://github.com/kingsdigitallab/kdl-dts-server#readme",
"dependencies": {
"@xmldom/xmldom": "^0.8.3",
"express": "^4.18.1",
"kdl-dts-client": "github:kingsdigitallab/kdl-dts-client#v0.2.2",
"nodemon": "^2.0.20",
"saxon-js": "^2.5.0",
"xmldom": "^0.6.0",
"xpath": "^0.0.32",
"xslt3": "^2.5.0"
},
"devDependencies": {
"chai": "^4.3.7",
"mocha": "^10.2.0",
"supertest": "^6.3.3"
},
"nodemonConfig": {
"ext": "js,json,xsl",
"ignore": ["responses/*json", ".corpus/*"]
}
}