forked from fredericd/marcjs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.06 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.06 KB
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
49
50
51
52
{
"name": "marcjs",
"description": "MARC record node.js library",
"version": "1.0.7",
"homepage": "https://github.com/fredericd/marcjs",
"author": {
"name": "Frédéric Demians",
"email": "f.demians@tamil.fr"
},
"keywords": [
"marc",
"iso2709",
"bibliographic",
"marcxml",
"machine-readable cataloging",
"marc-in-json"
],
"repository": {
"type": "git",
"url": "git://github.com/fredericd/marcjs.git"
},
"bugs": {
"url": "https://github.com/fredericd/marcjs/issues"
},
"licence": "See license in LICENSE-MIT",
"licenses": [
{
"type": "MIT",
"url": "https://github.com/fredericd/marcjs/blob/master/LICENSE-MIT"
}
],
"main": "lib/marcjs",
"engines": {
"node": ">= 6.0.0"
},
"scripts": {
"test": "nyc --reporter=html --reporter=text mocha"
},
"bin": {
"marcjs": "bin/marcjs"
},
"dependencies": {
"libxmljs": "^0.19.7",
"nopt": "~2.1.0",
"xml2js": "^0.4.19"
},
"devDependencies": {
"mocha": "^5.2.0",
"nyc": "^11.8.0",
"should": "^2.0.2"
}
}