-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
42 lines (42 loc) · 1.01 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
{
"name": "bibliography",
"description": "Library for parsing and rendering bibliographic entities (ie. convert between BibTex, AMA reference, etc)",
"keywords": [
"bibliography",
"reference",
"AMA",
"bibtex",
"parse",
"latex",
"references"
],
"version": "0.1.0",
"main": "Bibliography.js",
"author": "digitalheir",
"repository": {
"type": "git",
"url": "https://github.com/digitalheir/bibliography-js.git"
},
"license": "MIT",
"scripts": {
"build": "npm run build:min",
"build:min": "webpack -p",
"build:ts": "tsc",
"test": "mocha --compilers ts:ts-node/register,tsx:ts-node/register **/*.spec.ts"
},
"dependencies": {
"bibtex": "^0.5.0",
"latex-to-unicode-converter": "*"
},
"devDependencies": {
"@types/chai": "^4.0.4",
"@types/mocha": "^2.2.43",
"babel-core": "*",
"babel-preset-es2015": "*",
"chai": "^4.1.1",
"mocha": "^3.5.0",
"ts-node": "^3.3.0",
"typescript": "^2.4.2",
"webpack": "^3.5.2"
}
}