-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
31 lines (31 loc) · 916 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
{
"name": "@coedl/transcription-parsers",
"version": "1.4.1",
"description": "A set of parsers to convert transcription XML files to hierarchical JSON.",
"main": "index.js",
"scripts": {
"test:watch": "./node_modules/.bin/jest --verbose --watch",
"test": "./node_modules/.bin/jest --verbose"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CoEDL/transcription-parsers.git"
},
"author": "Marco La Rosa",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/CoEDL/transcription-parsers/issues"
},
"homepage": "https://github.com/CoEDL/transcription-parsers#readme",
"engines": {
"node": ">=12.0.0"
},
"dependencies": {
"lodash": "^4.17.21",
"xml-js": "^1.6.11"
},
"devDependencies": {
"fs-extra": "^10.1.0",
"jest": "^29.2.2"
}
}