-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 2.18 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
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "@phfaist/zoodb",
"type": "module",
"version": "0.1.1",
"author": "Philippe Faist",
"license": "MIT",
"packageManager": "[email protected]",
"dependencies": {
"@apidevtools/json-schema-ref-parser": "^11.7.3",
"base32-encode": "^2.0.0",
"browser-process-hrtime": "^1.0.0",
"citeproc": "^2.4.62",
"debug": "^4.4.0",
"escape-html": "^1.0.3",
"exif-parser": "^0.1.12",
"feedparser": "^2.2.10",
"glob": "^11.0.0",
"hash.js": "^1.1.7",
"js-yaml": "^4.1.0",
"jsonschema": "^1.4.1",
"lodash": "^4.17.21",
"node-fetch": "^3.3.2",
"parse-full-name": "^1.2.6",
"sax": "^1.4.1",
"stream-parser": "^0.3.1",
"url": "^0.11.4"
},
"main": "./src/index.js",
"devDependencies": {
"eslint": "^9.17.0",
"mocha": "11.0.2"
},
"scripts": {
"test": "mocha",
"test-debug": "DEBUG=\"zoodb*,mocha*\" mocha",
"lint": "eslint 'src/**/*.js'"
},
"exports": {
".": "./src/index.js",
"./citationmanager": "./src/citationmanager/index.js",
"./citationmanager/source/*": "./src/citationmanager/source/*.js",
"./schemaloader": "./src/schemaloader.js",
"./dbdataloader/*": "./src/dbdataloader/*.js",
"./dbprocessor/*": "./src/dbprocessor/*.js",
"./resourcecollector": "./src/resourcecollector/index.js",
"./resourcecollector/retriever/*": "./src/resourcecollector/retriever/*.js",
"./resourcecollector/processor/*": "./src/resourcecollector/processor/*.js",
"./zooflm": "./src/zooflm/index.js",
"./zooflm/citationcompiler": "./src/zooflm/citationcompiler.js",
"./zooflm/scanner": "./src/zooflm/scanner.js",
"./util": "./src/util/index.js",
"./util/*": "./src/util/*.js",
"./std": "./src/std/index.js",
"./std/*": "./src/std/*.js",
"./flm-js/*": "./flm-js-src/flm-js/*.js"
},
"....imports...StillBuggyInParceljs...ExportSymbolsAreNotRecognized": {
"#flm-js/*": "./flm-js-src/flm-js/*"
},
"browser": {
"node-fetch": {
"global": "fetch"
}
}
}