-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
56 lines (56 loc) · 1.55 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
{
"name": "bibtex",
"version": "0.9.0",
"description": "Library for parsing a BiBTeX file in pure Javascript / Typescript",
"main": "index.js",
"types": "index.d.ts",
"repository": {
"type": "git",
"url": "[email protected]:digitalheir/bibtex-js.git"
},
"author": "Maarten Trompper",
"license": "MIT",
"keywords": [
"bibtex",
"parser"
],
"dependencies": {},
"devDependencies": {
"@types/chai": "^4.0.1",
"@types/mocha": "^2.2.43",
"assert": "^1.4.1",
"awesome-typescript-loader": "^3.2.3",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-preset-env": "^1.5.1",
"babel-preset-es2015": "^6.24.1",
"chai": "^4.1.0",
"latex-to-unicode-converter": "^0.5.0",
"mocha": "^10.1.0",
"nearley": "^2.11.0",
"rimraf": "^2.5.4",
"ts-node": "^3.0.4",
"tslint": "^5.7.0",
"tslint-loader": "^3.5.3",
"typescript": "^2.5.2",
"webpack": "^3.4.1"
},
"scripts": {
"build": "npm run clean && npm run build:min",
"build:min": "webpack -p",
"build:ts": "tsc",
"clean": "rimraf dist",
"test": "mocha --compilers ts:ts-node/register,tsx:ts-node/register",
"nearleyc": "nearleyc src/parser/parser.ne -o src/parser/parser.js",
"nearleytest": "nearleyc src/parser/parser.ne -o src/parser/test.ts",
"nearleyrr": "nearley-railroad src/parser/parser.ne -o bibtex.html"
},
"contributors": [
{
"name": "Maarten Trompper",
"email": "[email protected]",
"url": "https://github.com/digitalheir/"
}
]
}