-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.35 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": "@yepengding/bibtex-js-parser",
"version": "1.1.6",
"homepage": "https://github.com/yepengding/bibtex-js-parser",
"description": "A BitTeX parser implemented in JavaScript (ES6). Transforming a BibTeX file to an object in memory or a semi-structured file on disk.",
"main": "./index.js",
"types": "./index.d.ts",
"scripts": {
"dev": "webpack --config webpack.config.dev.js",
"build-commonjs": "LIB_TYPE=commonjs webpack --config webpack.config.prod.js",
"build-umd": "LIB_TYPE=umd webpack --config webpack.config.prod.js",
"build": "npm run build-commonjs && npm run build-umd",
"test": "npm run dev && mocha --require source-map-support/register dist/dev/bibtex-js-parser-dev.js"
},
"keywords": [
"bibtex",
"parser"
],
"author": "Yepeng Ding",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/yepengding/bibtex-js-parser"
},
"bugs": {
"url": "https://github.com/yepengding/bibtex-js-parser/issues"
},
"dependencies": {
"antlr4": "^4.10.1"
},
"devDependencies": {
"@babel/core": "^7.18.6",
"@babel/preset-env": "^7.18.6",
"babel-loader": "^8.2.5",
"chai": "^4.3.6",
"glob": "^8.0.3",
"mocha": "^10.0.0",
"source-map-support": "^0.5.21",
"webpack": "^5.73.0",
"webpack-cli": "^4.10.0",
"webpack-license-plugin": "^4.2.2"
}
}