-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
39 lines (39 loc) · 1020 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
{
"name": "marcrecord",
"description": "MARC record library (inspired by marc4j)",
"version": "1.1.4",
"author": "Alexander Fronkin <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/afronkin/node-marcrecord.git"
},
"main": "index",
"scripts": {
"record_manipulation": "node test/record_manipulation.js",
"iso2709_async": "node test/iso2709_async.js",
"iso2709_sync": "node test/iso2709_sync.js",
"marcxml_async": "node test/marcxml_async.js",
"marcxml_sync": "node test/marcxml_sync.js"
},
"engines": {
"node": ">= 0.10.0"
},
"dependencies": {
"iconv-lite": ">= 0.4.4",
"jsonparse": ">= 1.2.0",
"sax": ">= 1.2.1"
},
"bugs": {
"url": "https://github.com/afronkin/node-marcrecord/issues"
},
"homepage": "https://github.com/afronkin/node-marcrecord",
"directories": {
"example": "examples",
"test": "test"
},
"keywords": [
"MARC21",
"UNIMARC"
],
"license": "BSD-2-Clause"
}