-
Notifications
You must be signed in to change notification settings - Fork 26
/
package.json
53 lines (53 loc) · 1.08 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
49
50
51
52
53
{
"name": "marcjs",
"description": "MARC record Node.js library",
"version": "2.0.1",
"homepage": "https://github.com/fredericd/marcjs",
"author": {
"name": "Frédéric Demians",
"email": "[email protected]"
},
"keywords": [
"marc",
"iso2709",
"bibliographic",
"marcxml",
"machine-readable cataloging",
"marc-in-json"
],
"main": "lib/Marc.js",
"files": [
"bin/*",
"lib/*.js"
],
"repository": {
"type": "git",
"url": "git://github.com/fredericd/marcjs.git"
},
"bugs": {
"url": "https://github.com/fredericd/marcjs/issues"
},
"license": "MIT",
"engines": {
"node": ">= 12.0.0"
},
"scripts": {
"test": "nyc --reporter=lcov --reporter=html --reporter=text mocha"
},
"bin": {
"marcjs": "bin/marcjs"
},
"dependencies": {
"he": "^1.2.0",
"nopt": "^5.0.0"
},
"devDependencies": {
"coveralls": "^3.1.0",
"eslint": "^7.16.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.22.1",
"mocha": "^5.2.0",
"nyc": "^11.9.0",
"should": "^2.1.1"
}
}