-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1011 Bytes
/
Copy pathpackage.json
File metadata and controls
39 lines (39 loc) · 1011 Bytes
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": "bib-parser",
"version": "0.0.2",
"description": "Parse BibTeX entries into JavaScript objects (and back) including processing of basic LaTeX in entry fields.",
"author": "Ignacio X. Domínguez",
"license": "MIT",
"main": "dist/bib-parser.js",
"module": "src/index.js",
"scripts": {
"build": "webpack --mode=production",
"test": "node test/test.js",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/ignacioxd/bib-parser.git"
},
"keywords": [
"LaTeX",
"BibTeX",
"parser",
"JSON"
],
"bugs": {
"url": "https://github.com/ignacioxd/bib-parser/issues"
},
"homepage": "https://github.com/ignacioxd/bib-parser#readme",
"peerDependencies": {},
"dependencies": {
"latex-to-unicode-converter": "^0.5.2"
},
"devDependencies": {
"@babel/core": "^7.4.4",
"@babel/preset-env": "^7.4.4",
"babel-loader": "^8.0.5",
"webpack": "^4.30.0",
"webpack-cli": "^3.3.1"
}
}