-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
43 lines (43 loc) · 1.22 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
{
"name": "bibtex-parser-experiment",
"private": true,
"version": "0.1.0",
"description": "Experiments to determine the new BibTeX parser formula -- to be applied to other formats as well",
"main": "dev.js",
"scripts": {
"babel": "babel src -d lib --copy-files",
"astrocite": "pegjs src/astrocite/grammar.pegjs",
"nearley": "nearleyc -o src/nearley/grammar.js src/nearley/grammar.ne",
"zotero": "node ./tools/make-zotero.js",
"jabref": "tools/install-jabref.sh",
"pretest": "npm run babel",
"test": "node ./test/",
"benchmark": "node ./test/benchmark",
"features": "node ./test/feature"
},
"keywords": [
"bibtex",
"parser",
"grammar",
"pegjs",
"nearley"
],
"author": "Lars Willighagen",
"license": "MIT",
"dependencies": {
"@retorquere/bibtex-parser": "^3.2.13",
"benchmark": "^2.1.4",
"biblatex-csl-converter": "^1.9.5",
"moo": "^0.5.1",
"nearley": "^2.19.7",
"translators-check": "git+https://github.com/zotero/translators.git",
"xml2js": "^0.4.23"
},
"devDependencies": {
"@babel/cli": "^7.12.1",
"@babel/core": "^7.12.3",
"@babel/preset-env": "^7.12.1",
"@babel/register": "^7.12.1",
"pegjs": "^0.10.0"
}
}