-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
55 lines (55 loc) · 1.63 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
{
"name": "bibtex-bibjson",
"version": "0.2.0",
"description": "📚 A tool to convert BibTeX documents to BibJSON.",
"typings": "dist/bibtex-bibjson.d.ts",
"types": "dist/bibtex-bibjson.d.ts",
"source": "src/bibtex-bibjson.js",
"main": "dist/bibtex-bibjson.js",
"module": "dist/bibtex-bibjson.module.js",
"unpkg": "dist/bibtex-bibjson.umd.js",
"exports": "./dist/bibtex-bibjson.modern.js",
"scripts": {
"build": "pegjs -o src/bibtex-bibjson.js src/bibtex.pegjs && cross-env NODE_ENV=production microbundle --compress",
"test": "ava tests/test.ts",
"coverage": "nyc npm test && nyc report --reporter=lcov && codecov",
"start": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/plus1tv/bibtex-bibjson.git"
},
"keywords": [
"transpiler",
"compiler",
"bibtex",
"bibjson"
],
"author": "Alain Galvan",
"license": "MIT",
"bugs": {
"url": "https://github.com/plus1tv/bibtex-bibjson/issues"
},
"homepage": "https://github.com/plus1tv/bibtex-bibjson#readme",
"ava": {
"extensions": [
"ts"
],
"require": [
"ts-node/register/transpile-only"
]
},
"devDependencies": {
"@types/node": "^18.0.x",
"ava": "^4.3.x",
"codecov": "^3.8.x",
"coveralls": "^3.1.x",
"cross-env": "^7.0.3",
"microbundle": "^0.15.0",
"nyc": "^15.1.x",
"pegjs": "^0.10.0",
"ts-loader": "^9.3.1",
"ts-node": "^10.9.1",
"typescript": "^4.7.4"
}
}